/* ========================================
   VARIABLES & RESET
======================================== */
:root {
    --anthracite: #2d2d2d;
    --anthracite-light: #3d3d3d;
    --anthracite-dark: #1a1a1a;
    --grey-medium: #4a4a4a;
    --grey-soft: #5a5a5a;
    --grey-light: #6a6a6a;
    --grey-pale: #e0e0e0;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --accent: #b33a2d;
    --text-light: #b0b0b0;
    --text-dark: #e8e8e8;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--anthracite);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header {
    background-color: var(--anthracite);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    height: 90px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: calc(100vw - 500px);
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav.nav-desktop {
    display: flex;
    align-items: center;
}

.nav.nav-mobile {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% - 10px);
    right: 0;
    transform: translateY(-30px);
    background-color: var(--anthracite-light);
    min-width: auto;
    width: max-content;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 900;
}

@media (max-width: 992px) {
    .dropdown {
        left: auto;
        right: 0;
        transform: translateX(0) translateY(-30px);
    }
    
    .has-dropdown:hover .dropdown {
        transform: translateX(0) translateY(0);
    }
}

.has-dropdown:hover .dropdown {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.dropdown li {
    border-bottom: 1px solid var(--anthracite);
}

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

.dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown a:hover {
    background-color: var(--anthracite);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.55)),
                url('https://images.unsplash.com/photo-1513104890138-7c749659a591?q=80&w=1920&auto=format&fit=crop');
    background-color: var(--anthracite);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    color: var(--white);
    padding: 20px;
    max-width: 900px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Hero étendu avec texte complet */
.hero-extended {
    min-height: auto;
    padding: 120px 20px 80px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-intro {
    font-size: 1.3rem !important;
    color: var(--white) !important;
    margin-bottom: 30px !important;
}

.hero-tagline {
    font-size: 1.2rem !important;
    font-style: italic;
    color: var(--accent) !important;
    margin-top: 30px !important;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-extended {
        padding: 100px 15px 60px;
    }

    .hero-text p {
        font-size: 1rem;
        text-align: left;
    }

    .hero-intro {
        text-align: center !important;
        font-size: 1.1rem !important;
    }

    .hero-tagline {
        text-align: center !important;
        font-size: 1.05rem !important;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

.hero-buttons-secondary {
    margin-top: 50px;
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 15px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--accent);
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
}

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

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--anthracite);
}

/* ========================================
   FEATURES SECTION
======================================== */
.features {
    padding: 80px 0;
    background-color: var(--anthracite-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========================================
   HORAIRES SECTION
======================================== */
.horaires-preview {
    padding: 80px 0;
    background-color: var(--anthracite);
    color: var(--white);
    text-align: center;
}

.horaires-preview h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.horaires-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.horaire-block {
    padding: 30px;
    background-color: var(--anthracite-light);
}

.horaire-block h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.horaire-block p {
    font-size: 0.95rem;
}

.horaire-block .time {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 10px;
}

.phone-cta {
    font-size: 1.2rem;
}

.phone-cta a {
    color: var(--accent);
    font-weight: 600;
}

.phone-cta a:hover {
    text-decoration: underline;
}

/* ========================================
   MENU/CARTE SECTION
======================================== */
.page-header {
    background-color: var(--anthracite);
    padding: 95px 0 15px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    padding: 10px 0px;
}

.page-header h1.title-special {
    font-family: 'Black Ops One', cursive;
    font-weight: 300;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
    font-size: clamp(1.2rem, 4vw, 2.5rem);
}

.page-header .subtitle {
    color: var(--white);
    font-size: clamp(0.75rem, 2.5vw, 1.1rem);
    font-weight: 400;
    white-space: nowrap;
}

.menu-section {
    padding: 10px 0;
}

.menu-section:nth-child(even) {
    background-color: var(--anthracite-light);
}

.menu-section h2 {
    text-align: center;
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--white);
    white-space: nowrap;
    padding-top: 10px;
}

.menu-section h2.title-special {
    font-family: 'Black Ops One', cursive;
    font-weight: 300;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(0.8rem, 2.5vw, 1.1rem);
    color: var(--white);
    margin-bottom: 30px;
    white-space: nowrap;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-item {
    background-color: var(--anthracite-light);
    padding: 25px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item h3 {
    font-size: 1.1rem;
    color: var(--white);
}

.menu-item .price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    margin-left: 15px;
}

.menu-item p {
    font-family: 'Caveat', cursive;
    color: var(--text-light);
    font-size: 1.3rem;
    font-style: normal;
}

.menu-note {
    text-align: center;
    padding: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    padding: 20px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 60px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--white);
    text-align: center;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.contact-row .contact-item {
    margin-bottom: 0;
    flex: 1;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.contact-item p, .contact-item a {
    font-size: 1rem;
    color: var(--text-dark);
}

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

.horaires-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.horaires-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--anthracite-light);
    color: var(--text-dark);
}

.horaires-table td:first-child {
    font-weight: 500;
}

.horaires-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-map {
    background-color: var(--anthracite-light);
    height: 100%;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* ========================================
   ENTREPRISES SECTION
======================================== */
.entreprises-section {
    padding: 5px 0;
}

.entreprises-content {
    max-width: 800px;
    margin: 0 auto;
}

.entreprises-intro {
    margin-bottom: 40px;
}

.entreprises-intro .lead {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
}

.entreprises-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.entreprises-engagements {
    margin-bottom: 40px;
}

.entreprises-engagements h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.engagements-list {
    list-style: none;
    padding: 0;
}

.engagements-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--anthracite-light);
}

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

.engagements-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.entreprises-infos {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .entreprises-infos {
        gap: 40px;
    }
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    padding: 0;
    flex: 0 1 auto;
}

.info-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.info-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.info-text p {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.entreprises-cta {
    background-color: var(--anthracite-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.entreprises-cta p {
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background-color: var(--anthracite-dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
}

.footer-info {
    text-align: left;
}

.footer-info a {
    color: var(--white);
    font-size: 1.1rem;
}

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

.footer-logo {
    text-align: center;
}

.footer-links {
    text-align: right;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 20px;
}

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

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 20px;
    border-top: 1px solid var(--anthracite);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .footer-links {
        text-align: center;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .nav-list a {
        font-size: 1rem;
    }
}

@media (max-width: 1050px) {
    .header {
        height: 90px;
    }

    .header .container {
        justify-content: center;
        padding-left: 20px;
        padding-right: 60px; /* Place pour le bouton menu */
    }

    .logo {
        max-width: calc(100% - 40px);
    }

    .header .container {
        justify-content: center;
    }

    .logo {
        position: relative;
    }

    .logo img {
        max-width: 100%;
        height: auto;
        max-height: 100%;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
    }

    .nav.nav-desktop {
        display: none;
    }

    .nav.nav-mobile {
        display: block;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--anthracite);
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        z-index: 999;
    }

    .nav.nav-mobile.active {
        max-height: calc(100vh - 80px);
        padding: 20px;
        overflow-y: auto;
    }

    .header {
        z-index: 1001;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--anthracite-light);
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background-color: var(--anthracite);
        display: block;
        box-shadow: none;
        min-width: auto;
    }

    .dropdown li {
        border-bottom: none;
    }

    .dropdown a {
        padding: 12px 0 12px 25px;
        font-size: 0.9rem;
    }

    .has-dropdown > a::after {
        display: none;
    }

    .hero {
        align-items: flex-start;
        padding-top: 15vh;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 10vh;
    }

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

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

    .page-header {
        padding: 95px 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .menu-item-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .menu-item .price {
        margin-left: 10px;
        margin-top: 0;
        white-space: nowrap;
    }

    .contact-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .contact-row .contact-item {
        flex: 1 1 45%;
        min-width: 140px;
    }
}

#padding-bottom-20px {
    padding-bottom: 20px;
}

/* ========================================
   MODAL
======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(145deg, var(--anthracite-light), var(--anthracite-dark));
    border-radius: 20px;
    padding: 50px 60px;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.modal-content {
    text-align: center;
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.modal h2 {
    font-family: 'Black Ops One', cursive;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.modal p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

.modal-phone {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--white);
    background: var(--accent);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.modal-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6);
    background: #c0392b;
}

.modal-hours {
    margin-top: 25px;
    margin-bottom: 0 !important;
    font-size: 0.9rem !important;
    color: var(--grey-light) !important;
}

/* ========================================
   FLOATING BUTTON
======================================== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    z-index: 1500;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(231, 76, 60, 0.6);
}

.floating-btn-icon {
    font-size: 1.3rem;
}

.floating-btn-text {
    font-weight: 500;
}

@media (max-width: 480px) {
    .floating-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .floating-btn-icon {
        font-size: 1.1rem;
    }
}

/* ========================================
   SECTION LOCALISATION (Accueil)
======================================== */
.localisation {
    padding: 60px 0;
    background: var(--anthracite-dark);
}

.localisation h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--white);
}

.localisation-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.localisation-info {
    text-align: center;
}

.localisation-info .address {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.localisation-info .btn {
    margin-top: 20px;
}

.localisation-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.localisation-map iframe {
    display: block;
}

@media (max-width: 768px) {
    .localisation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .localisation-info {
        order: 2;
    }

    .localisation-map {
        order: 1;
    }
}

/* ========================================
   SECTION ENGAGEMENT (Accueil)
======================================== */
.engagement {
    padding: 30px 0;
    background: linear-gradient(180deg, var(--anthracite) 0%, var(--anthracite-dark) 100%);
}

.engagement h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.engagement-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.engagement-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.engagement-intro {
    font-size: 1.25rem !important;
    color: var(--white) !important;
    margin-bottom: 30px !important;
}

.engagement .features-grid {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .engagement {
        padding: 60px 0;
    }

    .engagement-content p {
        font-size: 1rem;
    }

    .engagement-intro {
        text-align: center !important;
        font-size: 1.1rem !important;
    }
}