.ysl-site-footer {
	background: var(--ysl-ink);
	color: rgba(255, 255, 255, 0.72);
}

.ysl-footer__grid {
	display: grid;
	grid-template-columns: minmax(240px, 1.25fr) minmax(150px, 0.75fr) minmax(150px, 0.75fr) minmax(220px, 1fr);
	gap: 54px;
	padding: 72px 0 58px;
}

.ysl-footer__title {
	margin: 0 0 18px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	line-height: 1.25;
	letter-spacing: 0;
}

.ysl-footer__column p {
	max-width: 280px;
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
}

.ysl-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ysl-footer-menu li + li {
	margin-top: 10px;
}

.ysl-footer-menu a,
.ysl-footer__contact a {
	display: inline-flex;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.5;
}

.ysl-footer-menu a:hover,
.ysl-footer__contact a:hover {
	color: var(--ysl-orange);
}

.ysl-footer__contact {
	display: grid;
	align-content: start;
	gap: 10px;
}

.ysl-footer__contact p {
	margin-top: 4px;
}

.ysl-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ysl-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 74px;
}

.ysl-footer__bottom p,
.ysl-footer-credit,
.ysl-footer-credit a {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.62);
}

.ysl-footer-credit-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ysl-footer-credit a:hover {
	color: var(--ysl-orange);
}

.ysl-back-to-top {
	position: fixed;
	right: 28px;
	bottom: 28px;
	z-index: 80;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: var(--ysl-radius);
	background: var(--ysl-orange);
	color: #fff;
	box-shadow: 0 14px 34px rgba(8, 4, 5, 0.24);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.ysl-back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.ysl-back-to-top:hover {
	background: var(--ysl-orange-dark);
}

.ysl-back-to-top span {
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: translateY(3px) rotate(45deg);
}


@media (max-width: 960px) {
	.ysl-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px 44px;
	}
}

@media (max-width: 720px) {
	.ysl-footer__grid {
		grid-template-columns: 1fr;
		padding: 52px 0 42px;
	}

	.ysl-footer__bottom-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		padding: 18px 0;
	}

	.ysl-footer-credit-menu {
		justify-content: flex-start;
	}

	.ysl-back-to-top {
		right: 18px;
		bottom: 18px;
		width: 44px;
		height: 44px;
	}
}
