/* ===== FOOTER STYLES ===== */

.site-footer {
	border-top: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(24, 10, 6, 0.92), rgba(17, 8, 5, 0.98));
	color: var(--muted);
	padding: 36px 0 18px;
	margin-top: 24px;
	will-change: transform;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 24px;
	align-items: start;
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--paper);
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.9rem;
	letter-spacing: 0.05em;
	margin-bottom: 12px;
	will-change: color;
	transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-brand:hover {
	color: #ffc24b;
}

.footer-brand-logo {
	width: 42px;
	height: 42px;
	object-fit: contain;
	flex: none;
	display: block;
	will-change: transform;
	transform: translateZ(0);
	image-rendering: -webkit-optimize-contrast;
}

.footer-brand-copy {
	max-width: 34ch;
	color: #ffe2c2;
	font-size: 0.98rem;
	line-height: 1.6;
}

.footer-column h3 {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.45rem;
	margin-bottom: 12px;
	color: #ffe7c7;
}

.footer-links,
.footer-social {
	display: grid;
	gap: 10px;
}

.footer-links a,
.footer-social a {
	color: #ffe2c2;
	text-decoration: none;
	transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	will-change: color, transform;
}

.footer-social .social-icon {
	width: 22px;
	height: 22px;
	flex: none;
	display: inline-block;
	transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
	will-change: transform;
}

.footer-links a:hover,
.footer-social a:hover {
	color: #ffc24b;
	transform: translateY(-2px);
}

.footer-social a:hover .social-icon {
	transform: scale(1.15);
}

.footer-bottom {
	padding-top: 20px;
	margin-top: 24px;
	border-top: 1px solid rgba(255, 223, 189, 0.12);
	text-align: center;
	color: #ffd6a5;
	font-size: 0.95rem;
}

/* Mobile styles */
@media (max-width: 900px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.footer-brand {
		font-size: 1.4rem;
	}

	.footer-brand-logo {
		width: 36px;
		height: 36px;
	}

	.footer-column h3 {
		font-size: 1.2rem;
	}
}

@media (max-width: 600px) {
	.site-footer {
		padding: 24px 0 12px;
	}

	.footer-brand-copy {
		font-size: 0.9rem;
	}
}
