/* Footer layout */
.site-footer {
	background: #f4eeee;
	color: #2b2a2a;
	margin-top: 0;
	font-family: "Playfair Display", serif;
}

.footer-layout {
	display: grid;
	grid-template-columns: 1.05fr 1.35fr;
	min-height: 520px;
}

.footer-hero {
	position: relative;
	min-height: 520px;
	overflow: hidden;
}

.footer-hero img {
	width: 100%;
	height: 90vh;
	object-fit: cover;
	display: block;
	filter: saturate(1.05);
}

.footer-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.15) 80%);
}

.footer-hero-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 64px 56px;
	color: #ffffff;
	z-index: 1;
    align-items: center;
}

.footer-brand img {
	height: 50px;
	width: auto;
	display: block;
}

.footer-hero-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
	font-size: 16px;
	line-height: 1.5;
	max-width: 360px;
    text-align: center;
}

.footer-main {
	background: #f4eeee;
	display: flex;
	flex-direction: column;
	padding: 40px 64px 32px;
}


.footer-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	align-items: start;
}

.footer-primary-list h4 {
	margin: 12px 0 12px;
	font-size: 22px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #3a312d;
}

.footer-nav {
	margin-top: 8px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.footer-nav a {
	color: #5a5250;
	text-decoration: none;
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	transition: color 0.2s ease;
}

.footer-nav a:hover {
	color: #000;
}

.footer-contact h4 {
	margin: 0 0 8px;
	font-size: 17px;
	letter-spacing: 0.5px;
}

.footer-contact p {
	margin: 0 0 10px;
	font-family: "Poppins", sans-serif;
	color: #5a5250;
	line-height: 1.6;
}

.footer-phone {
	font-weight: 600;
	color: #2b2a2a;
}

.footer-contact a {
	display: block;
	color: #5a5250;
	text-decoration: none;
	font-family: "Poppins", sans-serif;
	margin-bottom: 8px;
}

.footer-contact a:hover {
	color: #000;
}

.social-icons {
	display: flex;
	flex-direction: row;
	gap: 12px;
    margin-top: 40px;
}


.social-icons a {
	width: 42px;
	height: 42px;
	border: 1px solid #d6cdcd;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-icons a:hover {
	transform: translateY(-2px);
	border-color: #b89c8f;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.social-icons svg {
	width: 18px;
	height: 18px;
	fill: #6a5b55;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	padding-top: 16px;
    margin-top: 60px;
}

.footer-legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	font-family: "Poppins", sans-serif;
}

.footer-legal-links a {
	color: #5a5250;
	text-decoration: none;
	font-size: 13px;
	transition: color 0.2s ease;
}

.footer-legal-links a:hover {
	color: #000;
}

.footer-copy {
	margin: 0;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	color: #6a5b55;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1200px) {
	.footer-layout {
		grid-template-columns: 1fr;
	}

	.footer-hero {
		min-height: 380px;
	}

	.footer-main {
		padding: 28px;
	}
}

@media (max-width: 900px) {
	.footer-links {
		grid-template-columns: 1fr;
	}

	.footer-columns {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}

	.footer-content-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		gap: 24px;
	}
}

@media (max-width: 640px) {
	.footer-hero-overlay {
		padding: 40px 28px;
	}

	.footer-brand {
		font-size: 38px;
	}

	.footer-hero-list {
		font-size: 15px;
	}

	.social-icons {
		justify-content: center;
	}

	.footer-main {
		padding: 32px 22px 26px;
	}

	.footer-content-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-nav {
		justify-items: center;
	}

	.footer-contact {
		text-align: center;
	}

	.footer-bottom {
		align-items: center;
		text-align: center;
	}
}
