/* ============================================================
   ELIEL POSTER — CSS COMPLET
   Système de couleurs extrait du SVG logo
   ============================================================ */

/* ============================================================
   :root — VARIABLES CSS
   ============================================================ */
:root {
    /* --- Couleurs extraites du SVG --- */
    --rouge:          #d32f2f;   /* couleur principale logo */
    --rouge-sombre:   #b71c1c;   /* rouge foncé — hover, accents forts */
    --rouge-clair:    #ef5350;   /* rouge clair — hover states doux */
    --rouge-pale:     #ffebee;   /* rouge très pâle — fonds accent */

    /* --- Neutres (base SVG noir/blanc) --- */
    --noir:           #0d0d0d;   /* textes principaux */
    --gris-fonce:     #1e1e1e;   /* fond sombre alternatif */
    --gris-moyen:     #4a4a4a;   /* textes secondaires */
    --gris-clair:     #9e9e9e;   /* textes tertiaires, placeholders */
    --gris-pale:      #f5f5f5;   /* fonds sections alternées */
    --blanc:          #ffffff;   /* fond principal */

    /* --- Typographie --- */
    --font-titre:     'Poppins', sans-serif;  /* cohérent avec le SVG */
    --font-corps:     'Outfit', sans-serif;

    /* --- Espacements --- */
    --gap-xs:    0.5rem;
    --gap-sm:    1rem;
    --gap-md:    2rem;
    --gap-lg:    4rem;
    --gap-xl:    7rem;

    /* --- Bordures --- */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  50px;

    /* --- Ombres --- */
    --ombre-douce:  0 4px 24px rgba(211, 47, 47, 0.08);
    --ombre-forte:  0 8px 40px rgba(211, 47, 47, 0.18);

    /* --- Transitions --- */
    --transition: 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-corps);
    background-color: var(--blanc);
    color: var(--noir);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4 {
    font-family: var(--font-titre);
    font-weight: 700;
    line-height: 1.2;
    color: var(--noir);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rouge);
}

p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gris-moyen);
    line-height: 1.85;
}

/* ============================================================
   EN-TÊTE / NAVIGATION
   ============================================================ */
.entete {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 6%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(211, 47, 47, 0.08);
    transition: box-shadow var(--transition);
}

.entete:hover {
    box-shadow: 0 2px 20px rgba(211, 47, 47, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo h2 {
    font-family: var(--font-titre);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--noir);
    letter-spacing: 0.02em;
}

.logo h2 span {
    color: var(--rouge);
}

nav ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav ul li a {
    font-family: var(--font-corps);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gris-moyen);
    position: relative;
    transition: color var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rouge);
    transition: width var(--transition);
}

nav ul li a:hover {
    color: var(--rouge);
}

nav ul li a:hover::after {
    width: 100%;
}

/* ============================================================
   HERO / BANNIÈRE D'ACCUEIL
   ============================================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 6% 4rem;
    position: relative;
    overflow: hidden;
    background: var(--blanc);
    gap: 4rem;
}

/* Fond rouge pâle côté droit */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 52%;
    height: 100%;
    background: linear-gradient(150deg, var(--rouge-pale) 0%, rgba(255,235,238,0.25) 100%);
    z-index: 0;
    border-radius: 60% 0 0 60% / 50% 0 0 50%;
}

/* Colonne gauche — contenu texte */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content h4 {
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--rouge);
}

.hero-content p {
    font-size: 1.05rem;
    max-width: 460px;
    margin-bottom: 2.5rem;
}

/* Colonne droite — illustration */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 12px 60px 12px 60px;
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.15);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn-hero,
.btn-hero-outline,
.btn-primary,
.btn-outline,
.btn-submit {
    display: inline-block;
    font-family: var(--font-corps);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition), color var(--transition),
                transform var(--transition), box-shadow var(--transition);
    border: 2px solid transparent;
}

/* Bouton plein — rouge */
.btn-hero,
.btn-primary,
.btn-submit {
    background: var(--rouge);
    color: var(--blanc);
    border-color: var(--rouge);
}

.btn-hero:hover,
.btn-primary:hover,
.btn-submit:hover {
    background: var(--rouge-sombre);
    border-color: var(--rouge-sombre);
    transform: translateY(-2px);
    box-shadow: var(--ombre-forte);
}

/* Bouton contour */
.btn-hero-outline,
.btn-outline {
    background: transparent;
    color: var(--rouge);
    border-color: var(--rouge);
}

.btn-hero-outline:hover,
.btn-outline:hover {
    background: var(--rouge);
    color: var(--blanc);
    transform: translateY(-2px);
    box-shadow: var(--ombre-forte);
}

/* ============================================================
   SECTIONS — LAYOUT GÉNÉRAL
   ============================================================ */
section {
    padding: var(--gap-xl) 6%;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-titre);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--noir);
    max-width: 600px;
    margin-bottom: 1rem;
}

.section-line {
    width: 44px;
    height: 3px;
    background: var(--rouge);
    margin-bottom: 2rem;
    border-radius: 2px;
}

/* Sections sur fond alterné */
#services,
#realisations {
    background: var(--gris-pale);
}

#contact,
.cta {
    background: var(--rouge);
}

#contact h2,
.cta h2 {
    color: var(--blanc);
}

#contact p,
.cta p {
    color: rgba(255, 255, 255, 0.8);
}

#contact .btn-hero,
.cta .btn-hero {
    background: var(--blanc);
    color: var(--rouge);
    border-color: var(--blanc);
}

#contact .btn-hero:hover,
.cta .btn-hero:hover {
    background: var(--noir);
    border-color: var(--noir);
    color: var(--blanc);
}

#contact .btn-hero-outline,
.cta .btn-hero-outline {
    background: transparent;
    color: var(--blanc);
    border-color: rgba(255,255,255,0.6);
}

#contact .btn-hero-outline:hover,
.cta .btn-hero-outline:hover {
    background: var(--blanc);
    color: var(--rouge);
    border-color: var(--blanc);
}

.cta-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

#contact,
.cta {
    text-align: center;
}

/* ============================================================
   À PROPOS
   ============================================================ */
.apropos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.apropos-box {
    max-width: 100%;
}

.apropos-box h2 {
    margin-bottom: 1.5rem;
}

.apropos-box p {
    margin-bottom: 1rem;
}

.apropos-box p.complement {
    font-style: italic;
    color: var(--rouge);
    border-left: 3px solid var(--rouge);
    padding-left: 1.2rem;
    margin-top: 1.5rem;
}

.hero-visual2 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual2 img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--blanc);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(211, 47, 47, 0.08);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rouge);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    box-shadow: var(--ombre-forte);
    transform: translateY(-4px);
    border-color: rgba(211, 47, 47, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--noir);
}

.service-card p {
    font-size: 0.95rem;
}

/* ============================================================
   APPROCHE — SECTION MANIFESTE
   ============================================================ */
#approche {
    padding: var(--gap-xl) 6%;
    background: var(--blanc);
}

.approche-box {
    max-width: 960px;
}

/* Titre manifeste — très grand, impactant */
.approche-box > h2 {
    font-family: var(--font-titre);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--noir);
    max-width: 100%;
    margin-bottom: 2.5rem;
    position: relative;
}

.approche-box > h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--rouge);
    border-radius: 2px;
    margin-top: 1.2rem;
}

/* Texte intro — respirant */
.approche-box > p {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 300;
    line-height: 1.9;
    color: var(--gris-moyen);
    max-width: 580px;
    margin-bottom: 3.5rem;
}

/* Liste points clés — épurée, alignée */
.points-cles {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    border-top: 1px solid rgba(211, 47, 47, 0.1);
}

.points-cles li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-titre);
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--gris-moyen);
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(211, 47, 47, 0.1);
    transition: color var(--transition), padding-left var(--transition);
    cursor: default;
}

.points-cles li:hover {
    color: var(--rouge);
    padding-left: 0.6rem;
}

.points-cles li::before {
    content: counter(item, decimal-leading-zero);
    counter-increment: item;
    font-family: var(--font-titre);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--rouge);
    opacity: 0.6;
    flex-shrink: 0;
    transition: opacity var(--transition);
}

.points-cles li:hover::before {
    opacity: 1;
}

.points-cles li::after {
    content: '→';
    font-size: 1rem;
    color: var(--rouge);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity var(--transition), transform var(--transition);
}

.points-cles li:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Activer le compteur */
.points-cles {
    counter-reset: item;
}

/* ============================================================
   FORMULAIRE D'INSCRIPTION
   ============================================================ */
.form-box {
    background: var(--blanc);
    border: 1px solid rgba(211, 47, 47, 0.1);
    border-radius: var(--radius-md);
    padding: 3rem;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: var(--ombre-douce);
}

.form-box h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-box > p {
    margin-bottom: 2rem;
    color: var(--gris-clair);
}

.input-box {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.4rem;
}

.input-box label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gris-moyen);
}

.input-box input,
.input-box select,
.input-box textarea {
    font-family: var(--font-corps);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--noir);
    background: var(--gris-pale);
    border: 1.5px solid rgba(211, 47, 47, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
    appearance: none;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
    border-color: var(--rouge);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
    background: var(--blanc);
}

.input-box input::placeholder {
    color: var(--gris-clair);
    font-weight: 300;
}

/* Radio buttons */
.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.3rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gris-moyen);
    cursor: pointer;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--rouge);
    cursor: pointer;
}

/* Message retour formulaire */
#message {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    display: none;
}

#message.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

#message.error {
    display: block;
    background: var(--rouge-pale);
    color: var(--rouge-sombre);
    border: 1px solid rgba(211, 47, 47, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--noir);
    color: rgba(255, 255, 255, 0.55);
    padding: 3rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 3px solid var(--rouge);
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-brand {
    font-family: var(--font-titre);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blanc);
    display: block;
    margin-bottom: 0.3rem;
}

.footer-brand span {
    color: var(--rouge);
}

footer a {
    color: var(--rouge-clair);
    transition: color var(--transition);
}

footer a:hover {
    color: var(--blanc);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 8rem 4% 4rem;
        gap: 3rem;
    }

    .hero::before {
        display: none;
    }

    .hero-visual {
        order: -1;
    }

    .hero-visual img {
        max-width: 100%;
        border-radius: 8px 40px 8px 40px;
    }

    .apropos-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-visual2 {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .entete {
        padding: 1rem 4%;
    }

    section {
        padding: 5rem 4%;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1.2rem;
    }

    nav ul li a {
        font-size: 0.75rem;
    }

    .hero {
        padding: 8rem 4% 4rem;
    }

    .form-box {
        padding: 2rem 1.5rem;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }
}


/* ============================================================
   JS CLASSES — Animations, Reveal, Ripple, Toast, Formulaire
   ============================================================ */

/* ── ENTÊTE scroll ── */
.entete--scroll {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── Nav lien actif (JS) ── */
nav ul li a.nav-actif {
    color: var(--rouge);
    opacity: 1;
}
nav ul li a.nav-actif::after {
    width: 100%;
}

/* ── Reveal au scroll ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Ripple boutons ── */
.btn-hero,
.btn-hero-outline,
.btn-primary,
.btn-submit {
    position: relative;
    overflow: hidden;
}
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}
@keyframes ripple-anim {
    to { transform: scale(2.5); opacity: 0; }
}

/* ── Spinner bouton ── */
.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── Validation champs ── */
.champ--erreur {
    border-color: var(--rouge) !important;
    background: var(--rouge-pale) !important;
}
.champ--valide {
    border-color: #66bb6a !important;
}
.msg-erreur {
    display: block;
    font-size: 0.75rem;
    color: var(--rouge);
    font-weight: 500;
    margin-top: 0.3rem;
}

/* ── Compteur caractères textarea ── */
.compteur-chars {
    display: block;
    font-size: 0.72rem;
    color: var(--gris-clair);
    text-align: right;
    margin-top: 0.3rem;
}
.compteur--alerte {
    color: var(--rouge);
    font-weight: 600;
}

/* ── Toast notification ── */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--noir);
    color: var(--blanc);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border-left: 3px solid var(--rouge);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}
.toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Hero titre animé ── */
.hero-titre-anime {
    animation: fadeUp 0.9s 0.1s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PATCH RESPONSIVE — EN-TÊTE + MENU HAMBURGER
   À intégrer dans style.css (remplacer les sections concernées)
   ============================================================ */

/* ── EN-TÊTE ── */
.entete {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 6%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(211, 47, 47, 0.08);
    transition: box-shadow var(--transition);
}

.entete--scroll {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── LOGO ── */
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    z-index: 1001;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ── NAV DESKTOP ── */
nav ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

nav ul li a {
    font-family: var(--font-corps);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gris-moyen);
    position: relative;
    transition: color var(--transition);
    white-space: nowrap;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rouge);
    transition: width var(--transition);
}

nav ul li a:hover,
nav ul li a.nav-actif {
    color: var(--rouge);
}

nav ul li a:hover::after,
nav ul li a.nav-actif::after {
    width: 100%;
}

/* ── BOUTON HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
    border-radius: 6px;
    transition: background var(--transition);
}

.hamburger:hover {
    background: var(--rouge-pale);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--noir);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.2s;
}

/* Animation croix quand ouvert */
.hamburger.ouvert span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.ouvert span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.ouvert span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MENU MOBILE (tiroir latéral) ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--blanc);
    z-index: 1000;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.ouvert {
    display: flex;
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(211, 47, 47, 0.08);
}

.mobile-menu ul li a {
    display: block;
    font-family: var(--font-corps);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gris-moyen);
    padding: 1.1rem 0;
    transition: color var(--transition), padding-left var(--transition);
}

.mobile-menu ul li a:hover {
    color: var(--rouge);
    padding-left: 0.5rem;
}

.mobile-menu .btn-mobile-cta {
    display: inline-block;
    margin-top: 2rem;
    background: var(--rouge);
    color: var(--blanc);
    font-family: var(--font-corps);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: background var(--transition);
}

.mobile-menu .btn-mobile-cta:hover {
    background: var(--rouge-sombre);
}

/* ── OVERLAY sombre derrière le menu ── */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    backdrop-filter: blur(2px);
}

.menu-overlay.ouvert {
    display: block;
}

/* ── HERO — pas de contenu caché sur mobile ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 6% 4rem;
    position: relative;
    overflow: hidden;
    background: var(--blanc);
    gap: 4rem;
}

/* ============================================================
   RESPONSIVE GÉNÉRAL
   ============================================================ */

/* ── Tablette ── */
@media (max-width: 960px) {

    .entete {
        padding: 1rem 4%;
    }

    /* Cacher la nav desktop */
    .entete > nav {
        display: none;
    }

    /* Afficher le hamburger */
    .hamburger {
        display: flex;
    }

    /* Hero en colonne */
    .hero {
        grid-template-columns: 1fr;
        padding: 7rem 4% 4rem;
        gap: 2.5rem;
        text-align: center;
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        align-items: center;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-visual img {
        max-width: 320px;
        border-radius: 8px 40px 8px 40px;
    }

    /* À propos */
    .apropos-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .apropos-box p.complement {
        text-align: left;
    }

    .hero-visual2 {
        order: -1;
    }

    .hero-visual2 img {
        max-width: 280px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Sections */
    section {
        padding: 5rem 4%;
    }

    /* Footer */
    footer {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

/* ── Mobile ── */
@media (max-width: 580px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual img {
        max-width: 260px;
    }

    .hero-content h1 {
        font-size: clamp(1.9rem, 7vw, 2.5rem);
    }

    .form-box {
        padding: 1.8rem 1.2rem;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .approche-box > h2 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }
}