/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
    --green:        #2E7D32;
    --green-light:  #4CAF50;
    --green-dark:   #1B5E20;
    --orange:       #E65100;
    --orange-light: #F57C00;
    --orange-bright:#FF6D00;
    --dark:         #1A1A1A;
    --dark-2:       #242424;
    --gray:         #757575;
    --gray-light:   #F6F6F6;
    --white:        #FFFFFF;

    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --shadow-sm: 0 2px 10px rgba(0,0,0,.07);
    --shadow-md: 0 4px 24px rgba(0,0,0,.11);
    --shadow-lg: 0 8px 44px rgba(0,0,0,.16);

    --radius:    14px;
    --radius-sm: 8px;
    --ease:      .35s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

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

.section-tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--orange);
    margin-bottom: .6rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    margin: .7rem auto 0;
    border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 2rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    box-shadow: 0 4px 22px rgba(230,81,0,.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 30px rgba(230,81,0,.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.65);
}

.btn-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}

.btn-outline-sm {
    display: inline-block;
    padding: .5rem 1.3rem;
    border-radius: 50px;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    transition: background var(--ease), color var(--ease);
}

.btn-outline-sm:hover {
    background: var(--orange);
    color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: background .3s, box-shadow .3s, padding .3s;
}

.header.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: .6rem 0;
}

/* Inversion des couleurs quand header blanc */
.header.scrolled .logo-name       { color: var(--dark); }
.header.scrolled .logo-sub        { color: var(--gray); }
.header.scrolled .logo-svg        { color: var(--green); }
.header.scrolled .nav__link       { color: var(--dark); }
.header.scrolled .nav__toggle span{ background: var(--dark); }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.nav__logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav__logo-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    transition: color var(--ease);
    white-space: nowrap;
}

.header.scrolled .nav__logo-name { color: var(--dark); }

.footer__logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: .5rem;
}

/* Menu */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav__link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .88rem;
    color: var(--white);
    position: relative;
    transition: color var(--ease);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width var(--ease);
    border-radius: 2px;
}

.nav__link:hover,
.nav__link.active { color: var(--orange-light); }

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta {
    background: var(--orange);
    color: var(--white);
    padding: .5rem 1.3rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .88rem;
    transition: background var(--ease), transform var(--ease);
    flex-shrink: 0;
}

.nav__cta:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
}

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease);
}

.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 9s ease-out forwards;
    transform-origin: center center;
}

@keyframes heroZoom {
    from { transform: scale(1.07); }
    to   { transform: scale(1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        140deg,
        rgba(20,20,20,.88) 0%,
        rgba(27,94,32,.45) 55%,
        rgba(230,81,0,.25) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: 9rem;
    padding-bottom: 5rem;
    max-width: 730px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.13);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.22);
    color: var(--white);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.4rem;
}

.hero__title {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1.1rem;
}

.text-gradient {
    background: linear-gradient(130deg, var(--orange-bright), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(.95rem, 2.2vw, 1.15rem);
    color: rgba(255,255,255,.82);
    margin-bottom: 2.5rem;
    letter-spacing: .02em;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
}

.hero__stats {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
    padding: 1.1rem 1.8rem;
    border-radius: var(--radius);
}

.stat { text-align: center; }

.stat__number {
    display: block;
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: .2rem;
}

.stat__label {
    display: block;
    font-size: .68rem;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.stat__divider {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,.2);
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 14px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    animation: scrollDrop 1.6s ease infinite;
}

@keyframes scrollDrop {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ============================================================
   AVANTAGES STRIP
   ============================================================ */
.avantages-strip {
    background: var(--green);
    padding: .9rem 0;
}

.avantages-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.avantage {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    white-space: nowrap;
}

.avantage svg { color: var(--white); flex-shrink: 0; }

.avantage__sep {
    width: 1px;
    height: 1.2rem;
    background: rgba(255,255,255,.4);
}

@media (max-width: 600px) {
    .avantage__sep { display: none; }
    .avantages-strip__inner { gap: .8rem; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 6rem 0;
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-category {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--ease), box-shadow var(--ease);
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-category__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
}

.service-category__header.green  { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.service-category__header.orange { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }

.service-category__icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    stroke: var(--white);
}

.service-category__header h3 {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 700;
}

.service-list { padding: 1.25rem 1.75rem; }

.service-list li {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    padding: .8rem 0;
    border-bottom: 1px solid #F0F0F0;
}

.service-list li:last-child { border-bottom: none; }

.service-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.green-dot  { background: var(--green); }
.orange-dot { background: var(--orange); }

.service-list strong {
    display: block;
    font-family: var(--font-head);
    font-size: .92rem;
    color: var(--dark);
    margin-bottom: .15rem;
}

.service-list p {
    font-size: .83rem;
    color: var(--gray);
    line-height: 1.5;
}

.services__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem;
    flex-wrap: wrap;
    border: 1px solid #EBEBEB;
}

.services__cta p {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

/* ============================================================
   RÉALISATIONS / GALERIE
   ============================================================ */
.realisations {
    padding: 6rem 0;
    background: var(--gray-light);
}

.gallery-filters {
    display: flex;
    gap: .75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: .5rem 1.4rem;
    border-radius: 50px;
    border: 2px solid #DDD;
    background: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .82rem;
    cursor: pointer;
    color: var(--gray);
    transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .9rem;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 4/3;
    background: #E0E0E0;
    transition: opacity .3s, transform .3s;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.gallery__item:hover img { transform: scale(1.07); }

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--ease);
    display: flex;
    align-items: flex-end;
    padding: .9rem 1rem;
}

.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__overlay span {
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .85rem;
}

.aa-badge {
    position: absolute;
    top: .6rem; left: .6rem;
    background: var(--green);
    color: var(--white);
    font-size: .68rem;
    font-weight: 700;
    padding: .18rem .55rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.aa-badge.after { background: var(--orange); }

.gallery__item.hidden {
    display: none;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.94);
    cursor: zoom-out;
}

.lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    max-width: 88vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.lightbox__close {
    position: fixed;
    top: 1.2rem; right: 1.2rem;
    background: rgba(255,255,255,.14);
    border: none;
    color: var(--white);
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--ease);
    z-index: 2001;
}

.lightbox__close:hover { background: var(--orange); }

.lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.14);
    border: none;
    color: var(--white);
    font-size: 2.2rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--ease);
    line-height: 1;
    z-index: 2001;
}

.lightbox__nav:hover { background: var(--orange); }
.lightbox__nav.prev  { left: 1.2rem; }
.lightbox__nav.next  { right: 1.2rem; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.temoignages {
    padding: 6rem 0;
    background: var(--white);
}

.ratings-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid #EBEBEB;
    flex-wrap: wrap;
}

.rating-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
    transition: transform var(--ease);
}

.rating-platform:hover { transform: translateY(-3px); }

.platform-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    color: var(--dark);
}

.stars {
    font-size: 1.55rem;
    color: #FFB300;
    letter-spacing: .06em;
}

.rating-score {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--orange);
}

.ratings-divider {
    width: 1px;
    height: 60px;
    background: #DDD;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #F0F0F0;
    transition: transform var(--ease), box-shadow var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial__stars {
    font-size: 1.15rem;
    color: #FFB300;
    margin-bottom: .9rem;
    letter-spacing: .04em;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

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

.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--green));
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial__author strong {
    display: block;
    font-size: .9rem;
    color: var(--dark);
    font-family: var(--font-head);
}

.testimonial__author span {
    font-size: .76rem;
    color: var(--gray);
}

.temoignages__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.temoignages__cta p {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--gray);
    font-size: .9rem;
}

.review-links { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ============================================================
   ZONE D'INTERVENTION
   ============================================================ */
.zone {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}

.zone__bg { position: absolute; inset: 0; }

.zone__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zone__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(27,94,32,.92), rgba(20,20,20,.85));
}

.zone__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.zone__content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: .9rem;
}

.zone__content > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.88);
    margin-bottom: 2rem;
}

.zone__content strong { color: var(--orange-bright); }

.zone__tags {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    justify-content: center;
}

.zone__tags span {
    background: rgba(255,255,255,.13);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.22);
    color: var(--white);
    padding: .38rem 1rem;
    border-radius: 50px;
    font-size: .83rem;
    font-weight: 500;
    transition: background var(--ease), border-color var(--ease);
}

.zone__tags span:hover {
    background: var(--orange);
    border-color: var(--orange);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: 6rem 0;
    background: var(--gray-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item--link {
    transition: transform var(--ease);
    border-radius: var(--radius-sm);
}

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

.contact-item--link:hover span { color: var(--orange); }

.contact-item__icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item__icon svg { stroke: var(--white); }

.contact-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray);
    margin-bottom: .15rem;
}

.contact-item span {
    font-size: .93rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #1877F2;
    color: var(--white);
    padding: .75rem 1.4rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .88rem;
    transition: background var(--ease), transform var(--ease);
    width: fit-content;
    margin-top: .2rem;
}

.facebook-link:hover {
    background: #0d6ee8;
    transform: translateY(-2px);
}

.contact__map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact__map iframe { display: block; }

/* ============================================================
   PARTENAIRE
   ============================================================ */
.partenaire { padding: 6rem 0; background: var(--dark); }
.partenaire .section-title { color: var(--white); }
.partenaire .section-tag   { color: var(--green-light); }

.partenaire__card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.partenaire__logo-wrap {
    flex-shrink: 0;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partenaire__logo {
    width: 100%;
    height: auto;
    max-width: 140px;
    object-fit: contain;
    border-radius: 0.5rem;
}

.partenaire__content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem;
}

.partenaire__content p {
    color: var(--gray-light);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
    .partenaire__card { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark-2); }

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem 3rem;
}

.footer__logo {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: .7rem;
}

.footer__brand p {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
}

.footer__brand .siret {
    margin-top: .5rem;
    font-size: .76rem;
    color: rgba(255,255,255,.3);
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-head);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--orange);
    margin-bottom: 1rem;
}

.footer__links li { margin-bottom: .45rem; }

.footer__links a {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    transition: color var(--ease);
}

.footer__links a:hover { color: var(--orange-light); }

.footer__contact p {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    margin-bottom: .45rem;
    line-height: 1.5;
}

.footer__contact a {
    color: rgba(255,255,255,.75);
    transition: color var(--ease);
}

.footer__contact a:hover { color: var(--orange-light); }

.footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    color: var(--white);
    margin-top: .7rem;
    transition: background var(--ease), transform var(--ease);
}

.footer__social:hover {
    background: #1877F2;
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 1.2rem 0;
}

.footer__bottom p {
    text-align: center;
    font-size: .82rem;
    color: rgba(255,255,255,.35);
}

.footer__bottom a {
    color: var(--orange-light);
    transition: color var(--ease);
}

.footer__bottom a:hover { color: var(--orange-bright); }

/* ============================================================
   ANIMATIONS SCROLL REVEAL
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-up    { transform: translateY(38px); }
.reveal-left  { transform: translateX(-38px); }
.reveal-right { transform: translateX(38px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ============================================================
   RESPONSIVE — NAV COMPACTE (900px–1200px)
   ============================================================ */
@media (min-width: 901px) and (max-width: 1200px) {
    .nav__menu { gap: 1rem; }
    .nav__link  { font-size: .8rem; }
    .nav__cta   { font-size: .8rem; padding: .45rem .9rem; }
}

/* ============================================================
   RESPONSIVE — TABLETTE (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: 1fr; }
    .contact__grid  { grid-template-columns: 1fr; }
    .footer__grid   { grid-template-columns: 1fr 1fr; }
    .gallery__grid  { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 900px) {
    /* Mobile nav drawer */
    .nav__menu {
        position: fixed;
        top: 0; right: -100%;
        width: 78%;
        max-width: 310px;
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        align-items: flex-start;
        padding: 5.5rem 2rem 2rem;
        gap: 0;
        transition: right .4s cubic-bezier(.4,0,.2,1);
        box-shadow: -4px 0 32px rgba(0,0,0,.25);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav__menu.open { right: 0; }

    .nav__link,
    .header.scrolled .nav__link {
        width: 100%;
        padding: .85rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,.07);
        color: rgba(255,255,255,.85);
    }

    .nav__link::after { display: none; }
    .nav__link:hover,
    .nav__link.active,
    .header.scrolled .nav__link:hover,
    .header.scrolled .nav__link.active { color: var(--orange-light); }

    .nav__cta { margin-top: 1.2rem; align-self: flex-start; }

    .nav__toggle { display: flex; }

    /* Overlay fermeture menu mobile */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.45);
        z-index: 999;
    }

    .nav-overlay.open { display: block; }

    .hero__stats  { gap: .8rem; padding: .8rem 1.1rem; }
    .stat__number { font-size: 1.1rem; }
    .stat__label  { font-size: .6rem; }
    .stat__divider { width: 1px; height: 30px; }

    .testimonials__grid { grid-template-columns: 1fr; }

    .ratings-bar { flex-direction: column; gap: 1.5rem; }
    .ratings-divider { width: 60px; height: 1px; }

    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   RESPONSIVE — PETIT MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .gallery__grid  { grid-template-columns: 1fr; }
    .hero__actions  { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; padding: .45rem 1.2rem; font-size: .78rem; line-height: 1.3; }
    .hero__actions .btn svg { width: 14px; height: 14px; }
    .services__cta  { flex-direction: column; text-align: center; }
    .zone__tags     { gap: .45rem; }
    .review-links   { justify-content: center; }
    .temoignages__cta { flex-direction: column; align-items: center; }
    .section-title  { font-size: 1.7rem; }
}
