:root {
    --lge-footer-gold: var(--lge-gold, #ae8740);
    --lge-footer-gold-dark: var(--lge-gold-dark, #8f6b2d);
    --lge-footer-cream: var(--lge-cream, #efe9df);
    --lge-footer-black: var(--lge-black, #050505);
    --lge-footer-white: var(--lge-white, #ffffff);
    --lge-footer-text: var(--lge-text, #111111);
}

.lge-footer {
    position: relative;
    overflow: hidden;
    color: var(--lge-footer-text);
    background: var(--lge-footer-black);
}

.lge-footer__top {
    position: relative;
    overflow: hidden;
    background: var(--lge-footer-cream);
    padding: 34px 0 38px;
}

.lge-footer__top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(
        90deg,
        transparent 0,
        rgba(174, 135, 64, 0.95) 12%,
        rgba(174, 135, 64, 0.75) 88%,
        transparent 100%
    );
    opacity: 0.9;
}

.lge-footer__top::after {
    content: "";
    position: absolute;
    right: 40px;
    bottom: 22px;
    width: 260px;
    height: 220px;
    background: url("https://dev.la-grande-evasion.com/wp-content/uploads/2026/03/corbeau-footer@2x.webp") no-repeat center center;
    background-size: contain;
    opacity: 0.22;
    pointer-events: none;
}

.lge-footer__top-inner,
.lge-footer__bottom-inner,
.lge-footer__legal {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.lge-footer__cities-line {
    display: none;
}

.lge-footer__cities-intro,
.lge-footer__cities-grid {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.lge-footer__cities-intro {
    display: block;
    margin-bottom: 22px;
    padding-left: 0;
}

.lge-footer__title {
    margin: 0;		 
    font-family: var(--font-headings, inherit);
    font-size: clamp(1.5rem, 2.4vw, 1.5rem);
    line-height: 1;
    letter-spacing: 0.08em;
	/* Modif par Ludo le 16/04/26 text-align: left; */
    text-align: center;
	/* Fin modif */
    text-transform: uppercase;
    color: var(--lge-footer-gold);
	/* Ajout par Ludo le 16/04/26 */
	margin-bottom: 40px;	
	/*Fin ajout */
}

.lge-footer__cities-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(170px, 240px));
    justify-content: start;
    gap: 70px;
    padding-left: 0;
    padding-right: 0;
}

.lge-footer__city {
    max-width: 240px;
}

.lge-footer__city-name {
    margin: 0 0 10px;
    font-family: var(--font-headings, inherit);
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #000;
}

.lge-footer__address {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin: 0 0 12px;
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.35;
    color: rgba(0, 0, 0, 0.9);
}

.lge-footer__phone {
    display: inline-block;
    margin: 0 0 12px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.lge-footer__city-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lge-footer__city-links a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.lge-footer__city-links a:hover,
.lge-footer__phone:hover,
.lge-footer__legal a:hover {
    color: var(--lge-footer-gold-dark);
}

.lge-footer__city-links a:hover {
    transform: translateX(3px);
}

.lge-footer__city-links a .arrow,
.lge-footer__city-links a span:last-child {
    font-size: 0.95rem;
}

.lge-footer__arrow,
.lge-footer__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lge-footer__arrow svg,
.lge-footer__social-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.lge-footer__bottom {
    position: relative;
    padding: 54px 0 24px;
    background: var(--lge-footer-black);
    color: var(--lge-footer-white);
    border-top: 1px solid rgba(174, 135, 64, 0.18);
}

.lge-footer__bottom::before {
    display: none;
}

.lge-footer__bottom-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 54px;
    align-items: center;
}

.lge-footer__brand {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.lge-footer__brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.lge-footer__brand-logo {
    display: inline-block;
    font-family: var(--font-headings, inherit);
    font-size: 3.2rem;
    line-height: 0.86;
    color: #fff;
}

.lge-footer__logo-image {
    display: block;
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.lge-footer__brand-text {
    max-width: 640px;
}

.lge-footer__city-name a {
    color: inherit;
    text-decoration: none;
}

.lge-footer__city-name a:hover {
    text-decoration: underline;
}

.lge-footer__brand-text p {
    margin: 0 0 16px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.96);
}

.lge-footer__brand-text p:first-child {
    margin-bottom: 14px;
    font-size: 1.14rem;
    font-weight: 700;
}

.lge-footer__brand-text p:last-child {
    margin-bottom: 0;
}

.lge-footer__socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lge-footer__social {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 92px;
    padding: 18px 24px;
    background: var(--lge-footer-gold);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.lge-footer__social:hover {
    background: var(--lge-footer-gold-dark);
    transform: translateY(-2px);
}

.lge-footer__social-icon {
    font-size: 2rem;
}

.lge-footer__social-text {
    font-family: var(--font-headings, inherit);
    font-size: 1.18rem;
    line-height: 1.12;
    letter-spacing: 0.05em;
}

.lge-footer__legal {
    margin-top: 26px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lge-footer__legal p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.lge-footer__legal a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 1080px) {
    .lge-footer__cities-grid {
        gap: 40px;
    }

    .lge-footer__bottom-inner {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 32px;
    }

    .lge-footer__brand {
        gap: 24px;
    }
}

@media (max-width: 920px) {
    .lge-footer__top::after {
        right: 10px;
        bottom: 14px;
        width: 180px;
        height: 150px;
        opacity: 0.14;
    }

    .lge-footer__top-inner,
    .lge-footer__bottom-inner,
    .lge-footer__brand {
        display: block;
    }

    .lge-footer__cities-intro,
    .lge-footer__cities-grid {
        max-width: none;
    }

    .lge-footer__cities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-content: stretch;
    }

    .lge-footer__city {
        max-width: none;
    }

    .lge-footer__brand-mark {
        justify-content: flex-start;
        margin-bottom: 18px;
    }

    .lge-footer__socials {
        max-width: 460px;
        margin-top: 28px;
    }
}

/* =========================
   Mobile : 2 villes + 1 dessous
========================= */
@media (max-width: 640px) {
	.lge-footer__top {
		padding: 20px 0 24px;
	}

	.lge-footer__cities-intro,
	.lge-footer__cities-grid {
		max-width: 100%;
	}

	.lge-footer__cities-intro {
		margin-bottom: 14px;
	}

	.lge-footer__title {
		font-size: 1.3rem;
		letter-spacing: 0.06em;
	}

	.lge-footer__cities-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px 18px;
		margin: 0;
		padding: 0;
	}

	/* 3e ville en dessous sur toute la largeur */
	.lge-footer__city:nth-child(3) {
		grid-column: 1 / -1;
	}

	.lge-footer__city-name {
		font-size: 1rem;
		margin: 0 0 6px;
		line-height: 1.05;
	}

	.lge-footer__address {
		font-size: 0.78rem;
		line-height: 1.2;
		margin: 0 0 8px;
	}

	.lge-footer__phone {
		font-size: 0.8rem;
		line-height: 1.2;
		margin: 0 0 8px;
	}

	.lge-footer__city-links {
		gap: 2px;
	}

	.lge-footer__city-links a {
		font-size: 0.78rem;
		line-height: 1.2;
		gap: 6px;
	}

	.lge-footer__top::after {
		width: 110px;
		height: 90px;
		right: -6px;
		bottom: 8px;
		opacity: 0.1;
	}
}

/* =========================
   Mobile : partie noire + logo
========================= */
@media (max-width: 640px) {
	.lge-footer__bottom {
		padding: 28px 0 18px;
	}

	.lge-footer__bottom-inner {
		grid-template-columns: 1fr;
		gap: 22px;
		align-items: start;
	}

	.lge-footer__brand {
		grid-template-columns: 110px 1fr;
		gap: 16px;
		align-items: center;
	}

	.lge-footer__brand-mark {
		justify-content: flex-start;
	}

	.lge-footer__logo-image {
		max-width: 100px;
	}

	.lge-footer__brand-text p:first-child {
		font-size: 0.98rem;
		margin-bottom: 8px;
	}

	.lge-footer__brand-text p {
		font-size: 0.84rem;
		line-height: 1.45;
	}

	.lge-footer__socials {
		gap: 10px;
	}

	.lge-footer__social {
		grid-template-columns: 44px 1fr;
		min-height: 72px;
		padding: 12px 16px;
	}

	.lge-footer__social-text {
		font-size: 0.95rem;
		line-height: 1.1;
	}

	.lge-footer__legal {
		margin-top: 18px;
		padding-top: 10px;
	}

	.lge-footer__legal p {
		font-size: 0.78rem;
		line-height: 1.35;
	}
}