/* ==========================================================================
   Footer — Contact, navigation, mentions, logo brille
   ========================================================================== */

.site-footer {
	background-color: var(--color-white);
	padding: 96px 48px 0;
	display: flex;
	flex-direction: column;
	gap: 128px;
}

/* --------------------------------------------------------------------------
   Zone haute : 3 colonnes (contact + nav + legal)
   -------------------------------------------------------------------------- */

.site-footer__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

/* Colonne contact (gauche) */
.site-footer__col--contact {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.site-footer__contact-item {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: var(--font-weight-medium);
	line-height: 1;
	text-transform: uppercase;
	color: var(--color-black);
	margin: 0;
}

.site-footer__contact-item a {
	color: inherit;
	text-decoration: none;
	transition: opacity var(--duration-fast) var(--easing-default);
}

.site-footer__contact-item a:hover {
	opacity: 0.7;
}

/* Groupe navigation + legal (droite) */
.site-footer__nav-group {
	display: flex;
	gap: 128px;
	align-items: flex-start;
	justify-content: flex-end;
	width: 650px;
}

/* Colonnes nav et legal */
.site-footer__col--nav,
.site-footer__col--legal {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.site-footer__link {
	display: flex;
	align-items: center;
	gap: 2px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: var(--font-weight-medium);
	line-height: 1;
	text-transform: uppercase;
	color: var(--color-black);
	text-decoration: none;
	transition: opacity var(--duration-fast) var(--easing-default);
}

.site-footer__link:hover {
	opacity: 0.7;
}

.site-footer__link-icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.site-footer__link-icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
}

/* --------------------------------------------------------------------------
   Logo brille en bas (deborde volontairement)
   -------------------------------------------------------------------------- */

.site-footer__logo {
	width: 100%;
	height: 291px;
	overflow: hidden;
	color: var(--color-black);
}

.site-footer__logo svg {
	width: 100%;
	height: auto;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
	.site-footer {
		padding: 64px 32px 0;
		gap: 64px;
	}

	.site-footer__top {
		flex-direction: column;
		gap: 48px;
	}

	.site-footer__nav-group {
		width: 100%;
		justify-content: flex-start;
		gap: 64px;
	}

	.site-footer__logo {
		height: 200px;
	}
}

@media (max-width: 767px) {
	.site-footer {
		padding: 48px 24px 0;
		gap: 48px;
	}

	.site-footer__nav-group {
		flex-direction: column;
		gap: 32px;
	}

	.site-footer__logo {
		height: 120px;
	}
}
