.site-footer {
	position: relative;
	z-index: 2;
	overflow: visible;
	background-color: #f3ece4;
	color: var(--lpf-color-text);
	margin-top: calc(-1 * var(--lpf-torn-edge-overlap));
	padding-top: calc(var(--lpf-torn-edge-overlap));
	clip-path: var(--lpf-torn-edge-clip-top);
	filter: drop-shadow(1.1px 2px 0 rgba(70, 35, 15, 0.28)) drop-shadow(2.9px 5.1px 0 rgba(70, 35, 15, 0.16)) drop-shadow(6.9px 10.9px 10px rgba(70, 35, 15, 0.12));
}

.site-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	clip-path: var(--lpf-torn-edge-clip-top);
	background-color: #f3ece4;
	background-image: url("/wp-content/themes/la-pastaria-fracasso/assets/images/Lemonpattern.png");
	background-repeat: repeat;
	background-position: center;
	background-size: 980px auto;
	opacity: 0.02;
	pointer-events: none;
}

.site-footer::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	clip-path: var(--lpf-torn-edge-clip-top);
	background:
		var(--lpf-torn-edge-highlight-top),
		var(--lpf-torn-edge-shadow-top);
}

.site-footer__decoration {
	position: absolute;
	top: 50%;
	z-index: 1;
	width: clamp(150px, 16vw, 280px);
	height: auto;
	object-fit: contain;
	transform: translateY(-50%);
	pointer-events: none;
	user-select: none;
}

.site-footer__decoration--left {
	left: clamp(0.75rem, 2vw, 2rem);
}

.site-footer__decoration--right {
	right: clamp(0.75rem, 2vw, 2rem);
	width: clamp(165px, 17vw, 300px);
}

.site-footer__inner {
	position: relative;
	z-index: 2;
	max-width: 1600px;
	margin: 0 auto;
	padding: 4rem 1.5rem 3rem;
	text-align: center;
}

.site-footer__logo {
	display: inline-flex;
	justify-content: center;
	margin-bottom: 2.5rem;
	line-height: 0;
	text-decoration: none;
}

.site-footer__logo img {
	display: block;
	width: auto;
	height: clamp(120px, 18vw, 180px);
	max-width: 100%;
	object-fit: contain;
}

.site-footer__hours {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: clamp(0.95rem, 1.8vw, 1.125rem);
	font-weight: 400;
	line-height: 1.55;
}

.site-footer__hours p {
	margin: 0;
}

.site-footer__contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.25rem 2.5rem;
	margin-bottom: 2.75rem;
}

.site-footer__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--lpf-color-text);
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: clamp(0.9rem, 1.6vw, 1.05rem);
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__contact-item:hover,
.site-footer__contact-item:focus-visible {
	color: #1e1e2a;
}

.site-footer__contact-icon {
	flex-shrink: 0;
}

.site-footer__nav {
	margin-bottom: 0.5rem;
}

.site-footer__nav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__nav-list a {
	color: var(--lpf-color-text);
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: clamp(0.9rem, 1.6vw, 1.05rem);
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__nav-list a:hover,
.site-footer__nav-list a:focus-visible {
	color: #1e1e2a;
}

.site-footer__bar {
	position: relative;
	z-index: 2;
	border-top: 1px solid rgba(40, 40, 56, 0.12);
}

.site-footer__bar-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem 1.5rem;
	max-width: 1600px;
	margin: 0 auto;
	padding: 1.25rem 1.5rem 1.5rem;
}

.site-footer__copyright {
	margin: 0;
	font-family: var(--lpf-font-body);
	font-size: 0.8rem;
	line-height: 1.5;
	color: rgba(40, 40, 56, 0.85);
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
}

.site-footer__legal a {
	color: rgba(40, 40, 56, 0.85);
	font-family: var(--lpf-font-body);
	font-size: 0.8rem;
	line-height: 1.5;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
	color: var(--lpf-color-text);
}

@media (max-width: 767px) {
	.site-footer__decoration {
		top: calc(var(--lpf-torn-edge-overlap, 15px) + 3rem + 3.75rem);
		width: 72px;
		transform: translateY(-50%);
	}

	.site-footer__decoration--left {
		left: 0.25rem;
	}

	.site-footer__decoration--right {
		right: 0.25rem;
		width: 80px;
	}

	.site-footer__inner {
		padding: 3rem 1.25rem 2.5rem;
	}

	.site-footer__contact {
		flex-direction: column;
		gap: 1rem;
	}

	.site-footer__nav-list {
		gap: 0.65rem 1.25rem;
	}

	.site-footer__bar-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
