/* ==========================================================================
   1. VARIABLES CSS
   ========================================================================== */
:root {
    /* Couleurs */
    --primary-color: #8B5A2B;
    --primary-light: #C49A6C;
    --secondary-color: #F5F5F3;
    --accent-color: #E87E5A;
    --dark-color: #1E1A17;
    --text-color: #333333;
    --white-color: #FFFFFF;
    
    /* Typographie */
    --title-font: 'Poppins', sans-serif;
    --body-font: 'Lato', sans-serif;
    --h1-font-size: 2.2rem;
    --h2-font-size: 1.5rem;
    --normal-font-size: 0.938rem;
    
    /* Layout */
    --header-height: 3.5rem;
}

/* ==========================================================================
   2. STYLES DE BASE & TYPOGRAPHIE
   ========================================================================== */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.6; /* -- AJOUT : Améliore la lisibilité générale -- */
}

h1, h2, h3 {
    font-family: var(--title-font);
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--accent-color); /* -- AJOUT : Couleur par défaut pour les liens -- */
    transition: color 0.3s ease; /* -- AJOUT : Transition douce pour les liens -- */
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* -- AJOUT : Évite les petits espaces sous les images -- */
}

/* ==========================================================================
   3. CLASSES UTILITAIRES & LAYOUT
   ========================================================================== */
.container {
    max-width: 1024px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.section {
    padding: 4rem 0 2rem; /* -- MODIFIÉ : Espacement un peu plus aéré -- */
}

.section__title {
    font-size: var(--h2-font-size);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.section__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 0.85rem 1.75rem;
    border-radius: 0.4rem;
    font-family: var(--title-font);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.button:hover {
    background-color: #D46A4B;
    transform: translateY(-3px); /* -- AJOUT : Effet de soulèvement -- */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* -- AJOUT : Ombre portée -- */
}

/* ==========================================================================
   4. COMPOSANTS
   ========================================================================== */

/* -------------------- HEADER & NAVIGATION -------------------- */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--white-color);
    transition: box-shadow 0.3s, background-color 0.3s;
}

.header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo-img {
    height: 45px;
    width: auto;
}

.nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background-color: var(--primary-color);
    padding: 6rem 2rem 0;
    transition: right 0.4s ease-in-out;
    z-index: 10;
}

.nav__menu.show-menu {
    right: 0;
}

.nav__list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.nav__link {
    color: var(--white-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--accent-color);
}

.nav__button {
    display: none;
}

.nav__toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 20;
}

/* -------------------- HERO -------------------- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('banniere.jpg'); /* -- MODIFIÉ : Dégradé adouci -- */
    background-size: cover;
    background-position: center top; /* -- MODIFIÉ : Meilleur centrage -- */
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    padding: 0 20px;
}

.hero__title {
    font-weight: bold;
    color: var(--white-color);
}

.hero__title,
.hero__subtitle {
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
         2px 2px 8px rgba(0, 0, 0, 0.8); /* -- MODIFIÉ : Ombre affinée -- */
}

.hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-top: 0.5rem; /* -- AJOUT -- */
}

/* -------------------- SERVICES -------------------- */
.services__grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF; /* -- MODIFIÉ : Fond blanc pur pour un meilleur contraste -- */
    border-radius: 0.5rem; /* -- MODIFIÉ : Coins plus arrondis -- */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); /* -- AJOUT : Ombre douce -- */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* -- AJOUT : Transition au survol -- */
}

.service-card:hover {
    transform: translateY(-5px); /* -- AJOUT -- */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* -- AJOUT -- */
}

.service-card__icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* -------------------- METHOD -------------------- */
.method__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.method-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.method-card__icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.method-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* -------------------- TRUST -------------------- */
.trust__grid {
    display: grid;
    gap: 2rem;
}

.trust-card {
    text-align: left;
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    background-color: var(--white-color);
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trust-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

/* -------------------- AVIS CLIENTS -------------------- */
.reviews {
    background-color: var(--secondary-color);
    border-radius: 1rem;
    padding: 3rem 1.5rem 2.5rem;
}

.reviews__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    text-align: center;
    margin: -0.5rem auto 2.5rem;
}

.reviews__summary-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(30, 26, 23, 0.1);
}

.reviews__summary-stars {
    color: var(--accent-color);
    font-size: 1.15rem;
}

.reviews__summary-text {
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.reviews__grid {
    display: grid;
    gap: 2rem;
}

.review-card {
    position: relative;
    text-align: left;
    padding: 2.25rem 1.75rem 1.75rem;
    background-color: var(--white-color);
    border-radius: 0.6rem;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 6px 20px rgba(30, 26, 23, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 0.4rem;
    left: 1.25rem;
    font-size: 3.5rem;
    color: var(--primary-light);
    opacity: 0.45;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(30, 26, 23, 0.16);
}

.review-card__stars {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.review-card__text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.review-card__author {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.8rem;
    background-color: rgba(139, 90, 43, 0.08);
    padding: 0.3rem 0.75rem;
    border-radius: 1rem;
}

.review-card__author i {
    color: #4285F4;
}

.reviews__cta {
    text-align: center;
    margin-top: 2.5rem;
}

.reviews__google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-color);
    background-color: var(--primary-color);
    font-family: var(--title-font);
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 0.4rem;
    transition: background-color 0.3s, transform 0.3s;
}

.reviews__google-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* -------------------- CONTACT FORM -------------------- */
.contact {
    background-color: var(--secondary-color);
}

.contact__container {
    display: grid;
    gap: 3rem;
}

.form-group__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.4rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.15); /* -- MODIFIÉ : Ombre de focus plus douce -- */
}

/* ... Le reste de votre CSS reste inchangé ... */
/* Copiez simplement à partir d'ici jusqu'à la fin de votre fichier original */

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

.form-group__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

textarea.form-group__input {
    resize: vertical;
}

.form__status {
    margin-top: 1rem;
    font-weight: 600;
}

.contact__direct {
    text-align: center;
    padding: 2rem;
    background-color: var(--white-color);
    border-radius: 0.5rem;
}

.contact__direct h3 {
    font-size: var(--h2-font-size);
    margin-bottom: 1rem;
}

.contact__direct p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.button--cta {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.button--cta i {
    margin-right: 0.5rem;
}

/* -------------------- FOOTER -------------------- */
.footer {
    background-color: var(--dark-color);
    padding: 3rem 0 0;
}

.footer__inner {
    display: grid;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__brand-name {
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white-color);
    margin-bottom: 0.3rem;
}

.footer__tagline {
    font-size: 0.875rem;
    color: #a89880;
}

.footer__col-title {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7a6555;
    margin-bottom: 0.75rem;
}

.footer__phone {
    display: block;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
}

.footer__phone:hover {
    color: var(--primary-light);
}

.footer__zone {
    font-size: 0.875rem;
    color: #a89880;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link {
    color: #a89880;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--white-color);
}

.footer__bottom {
    padding: 1.25rem 0;
    text-align: center;
}

.footer__copy {
    font-size: 0.8rem;
    color: #4a3d32;
}

@media screen and (min-width: 768px) {
    .footer__inner {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }
}

/* -------------------- FLOATING CTA BUTTON -------------------- */
.floating-cta-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    animation: pulse 1.5s infinite;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-cta-button:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

.floating-cta-button.is-hidden {
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
}

/* ==========================================================================
   5. ANIMATIONS
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
}

/* ==========================================================================
   6. MEDIA QUERIES
   ========================================================================== */
@media screen and (min-width: 768px) {
    :root {
        --h1-font-size: 3.5rem;
        --h2-font-size: 2rem;
        --normal-font-size: 1rem;
    }
    
    .container {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
    .section {
        padding: 6rem 0 4rem;
    }

    .nav__toggle {
        display: none;
    }
    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        padding: 0;
    }
    .nav__list {
        flex-direction: row;
        gap: 2.5rem;
    }
    .nav__link {
        color: var(--text-color);
        font-size: var(--normal-font-size);
        position: relative;
        padding-bottom: 0.5rem;
    }
    /* -- AJOUT : Soulignement élégant au survol -- */
    .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--accent-color);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s ease-in-out;
    }
    .nav__link:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
    .nav__link:hover {
        color: var(--primary-color);
    }

    .nav__button {
        display: inline-block;
    }
    .nav__logo-img {
        height: 60px;
    }

    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .method__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact__container {
        grid-template-columns: 2fr 1fr;
        align-items: flex-start;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
    .method__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .reviews__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   7. SECTION GALERIE
   ========================================================================== */
.gallery {
    background-color: var(--secondary-color);
}

.section__description {
    text-align: center;
    max-width: 700px;
    margin: -1.5rem auto 2.5rem auto;
    line-height: 1.6;
    color: #666;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery__item {
    background-color: var(--white-color);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-color);
}

.gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gallery__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery__image--single {
    transition: transform 0.4s ease;
}

.gallery__item:hover .gallery__image--single {
    transform: scale(1.05);
}

.before-after__container {
    display: flex;
    width: 100%;
}

.before-after__image-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
}
.before-after__image-wrapper img {
    transition: transform 0.4s ease;
}
.before-after__image-wrapper:hover img {
    transform: scale(1.05);
}

.before-after__label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white-color);
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.gallery__caption {
    padding: 1rem 1.25rem;
    background-color: var(--white-color);
    margin-top: auto;
    text-align: left;
}

.gallery__caption-title {
    font-family: var(--title-font);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
}

.gallery__caption-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.25rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: var(--white-color);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery__overlay .gallery__caption-title {
    color: var(--white-color);
}

.gallery__overlay .gallery__caption-text {
    color: #e0e0e0;
}

.gallery__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ==========================================================================
   8. PAGE RÉALISATIONS
   ========================================================================== */
.page-header {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 1rem;
    background-color: var(--secondary-color);
    text-align: center;
}

.page-header .section__title {
    margin-bottom: 1rem;
}

/* -------------------- PAGES LÉGALES -------------------- */
.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 400px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   9. AJUSTEMENT POUR MOBILES
   ========================================================================== */

@media screen and (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 350px;
    padding-top: 8rem;
    padding-bottom: 2rem;
    background-position: center top; /* Ou center top si vous aviez déjà ajusté */
  }

  .hero__title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   10. BANDEAU COOKIES
   ========================================================================== */

.cookie-banner {
    display: none;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    background-color: var(--white-color);
    color: var(--text-color);
    padding: 1.25rem 1.5rem;
    border-radius: 0.6rem;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 8px 28px rgba(30, 26, 23, 0.18);
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: 760px;
    margin: 0 auto;
}

.cookie-banner.is-visible {
    display: flex;
    animation: cookie-banner-in 0.4s ease-out;
}

@keyframes cookie-banner-in {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-banner__icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-banner__body {
    flex: 1 1 300px;
}

.cookie-banner__title {
    font-family: var(--title-font);
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-banner__text {
    font-size: 0.875rem;
    line-height: 1.4;
}

.cookie-banner__text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner__button {
    border: none;
    border-radius: 0.4rem;
    padding: 0.65rem 1.25rem;
    font-family: var(--title-font);
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.cookie-banner__button--accept {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.cookie-banner__button--accept:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-banner__button--refuse {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-light);
}

.cookie-banner__button--refuse:hover {
    background-color: var(--secondary-color);
}

@media screen and (max-width: 500px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__button {
        flex: 1;
    }
}
/* ==========================================================================
   9. SECTION À PROPOS (#a-propos)
   ========================================================================== */
.about {
    background-color: var(--white-color);
}

.about__grid {
    display: grid;
    gap: 2.5rem;
}

.about__eyebrow {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.about__title {
    font-size: var(--h2-font-size);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.about__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.about__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about__text {
    line-height: 1.75;
    color: #555;
    margin-bottom: 1rem;
}

.about__text strong,
.about__lead strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-top: 1.75rem;
}

.about__phone {
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.about__phone:hover {
    color: var(--accent-color);
}

/* -------------------- CHIFFRES CLÉS -------------------- */
.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-content: start;
}

.about-stat {
    padding: 1.5rem 1.25rem;
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-light);
    text-align: left;
}

.about-stat--highlight {
    grid-column: 1 / -1;
    background-color: var(--primary-color);
    border-left-color: var(--accent-color);
}

.about-stat__value {
    display: block;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.1;
    color: var(--primary-color);
}

.about-stat--highlight .about-stat__value {
    font-size: 2.5rem;
    color: var(--white-color);
}

.about-stat__star {
    font-size: 0.7em;
    margin-left: 0.15em;
    color: #F5B301;
    vertical-align: 0.15em;
}

.about-stat__label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #666;
}

.about-stat--highlight .about-stat__label {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
}

/* ==========================================================================
   10. SECTION ZONE D'INTERVENTION (#zone-intervention)
   ========================================================================== */
.zone {
    background-color: var(--white-color);
}

.zone__grid {
    display: grid;
    gap: 1.5rem;
}

.zone-card {
    padding: 1.75rem 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.zone-card__title {
    font-size: 1.0625rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.zone-card__title i {
    color: var(--accent-color);
    margin-right: 0.4rem;
}

.zone-card__distance {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8178;
    margin-bottom: 0.75rem;
}

.zone-card__cities {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555;
}

.zone__note {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--secondary-color);
    border-left: 4px solid var(--primary-light);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555;
}

.zone__note i {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

.zone__note-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.zone__note-link:hover {
    color: var(--accent-color);
}

/* -------------------- HERO : BADGE ZONE -------------------- */
.hero__badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 0.9rem;
    background-color: rgba(30, 26, 23, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2rem;
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--white-color);
    backdrop-filter: blur(2px);
}

.hero__badge i {
    color: var(--accent-color);
    margin-right: 0.3rem;
}

/* -------------------- FOOTER : LISTE SERVICES -------------------- */
.footer__services {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #8a7d68;
}

/* ==========================================================================
   11. MEDIA QUERIES DES NOUVELLES SECTIONS
   ========================================================================== */
@media screen and (min-width: 768px) {
    .zone__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .about__grid {
        grid-template-columns: 1.55fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .about__stats {
        position: sticky;
        top: calc(var(--header-height) + 2rem);
    }

    .zone__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 420px) {
    .about__stats {
        grid-template-columns: 1fr;
    }

    .about__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* -------------------- NAV : 7 entrées, resserrement tablette -------------------- */
@media screen and (min-width: 768px) and (max-width: 1100px) {
    .nav__list {
        gap: 1.25rem;
    }

    .nav__link {
        font-size: 0.875rem;
    }

    .nav__button {
        padding: 0.65rem 1rem;
        font-size: 0.8125rem;
    }
}

@media screen and (min-width: 1101px) {
    .nav__list {
        gap: 1.75rem;
    }
}

/* -------------------- HERO : lisibilité du texte sur l'image -------------------- */
/* Voile renforcé : le hero porte désormais 3 niveaux de texte (titre, sous-titre, badge)
   sur une photo de chantier très claire. */
.hero {
    background:
        linear-gradient(rgba(30, 26, 23, 0.55), rgba(30, 26, 23, 0.72)),
        url('banniere.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero__subtitle {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
}

.hero__subtitle strong {
    color: #FFD9C8;
    font-weight: 700;
}

/* ==========================================================================
   12. PAGES SERVICES (pose-placo, isolation, combles, faux-plafond, bourges)
   ========================================================================== */
.breadcrumb {
    font-size: 0.8125rem;
    color: #8a8178;
    margin-bottom: 0.75rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.page-header__lead {
    max-width: 46rem;
    margin: 0 auto;
    line-height: 1.7;
}

.page-header__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
}

.service-page {
    max-width: 820px;
}

.service-page h2 {
    font-size: 1.35rem;
    margin: 2.5rem 0 0.9rem;
}

.service-page h2:first-child {
    margin-top: 0;
}

.service-page h3 {
    font-size: 1.05rem;
    margin: 1.5rem 0 0.5rem;
}

.service-page p {
    line-height: 1.75;
    color: #444;
    margin-bottom: 1rem;
}

.service-page strong {
    color: var(--primary-color);
}

.service-page ul {
    margin: 0 0 1.25rem 1.25rem;
    list-style: disc;
}

.service-page li {
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.35rem;
}

.service-page p a,
.service-page li a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.service-page p a:hover,
.service-page li a:hover {
    color: var(--accent-color);
}

.service-page__figures {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-page__figure img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-page__figure--single {
    max-width: 420px;
    margin: 1.5rem auto;
}

.service-page__figure figcaption {
    font-size: 0.8125rem;
    color: #777;
    margin-top: 0.4rem;
}

/* -------------------- FAQ (accueil + pages services) -------------------- */
.faq {
    max-width: 820px;
}

.faq__item {
    background-color: var(--white-color);
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.75rem;
    border-left: 4px solid var(--primary-light);
}

.faq__question {
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--primary-color);
    list-style: none;
    position: relative;
    padding-right: 2.5rem;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--accent-color);
}

.faq__item[open] .faq__question::after {
    content: '\2212';
}

.faq__answer {
    padding: 0 1.25rem 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* -------------------- BANDEAU D'APPEL -------------------- */
.cta-band {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    margin: 2.5rem 0;
}

.cta-band__title {
    color: var(--white-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
}

.cta-band__phone {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    border: 2px solid var(--white-color);
    border-radius: 0.4rem;
    color: var(--white-color);
    font-family: var(--title-font);
    font-weight: 600;
}

.cta-band__phone:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* -------------------- AUTRES SERVICES (maillage interne) -------------------- */
.related-services {
    display: grid;
    gap: 1rem;
}

.related-services__link {
    display: block;
    padding: 1.1rem 1.25rem;
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    border-top: 3px solid var(--accent-color);
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-services__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.related-services__link span {
    display: block;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Lien « En savoir plus » des cartes services de l'accueil */
.service-card__link {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.service-card__link:hover {
    color: var(--primary-color);
}

@media screen and (min-width: 600px) {
    .service-page__figures--2 {
        grid-template-columns: 1fr 1fr;
    }

    .related-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .related-services {
        grid-template-columns: repeat(4, 1fr);
    }
}
