/* ===================================================
   Footer Styles
   =================================================== */

.site-footer {
	background: var(--color-espresso);
	border-top: 1px solid rgba(201, 169, 90, 0.1);
	margin-top: 4rem;
	padding: 3rem 2rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

/* Footer Row */
.footer-row {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 3rem;
	margin-bottom: 2rem;
	align-items: center;
}

.footer-logo {
	flex-shrink: 0;
}

.footer-logo a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.footer-logo a:hover {
	opacity: 0.8;
}

.footer-logo img {
	max-height: 40px;
	width: auto;
}

.footer-logo .logo-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	color: var(--color-cream);
}

/* Footer Navigation */
.footer-nav {
	text-align: center;
}

.footer-menu {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.footer-menu a {
	font-family: 'Jost', sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(245, 240, 232, 0.7);
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: 400;
}

.footer-menu a:hover {
	color: var(--color-gold);
}

/* Social Icons */
.footer-social {
	display: flex;
	justify-content: flex-end;
	gap: 1.5rem;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: var(--color-cream);
	text-decoration: none;
	transition: all 0.2s ease;
	border-radius: 50%;
	background: rgba(201, 169, 90, 0.1);
}

.social-link:hover {
	color: var(--color-gold);
	background: rgba(201, 169, 90, 0.2);
	transform: translateY(-2px);
}

.social-link svg {
	width: 18px;
	height: 18px;
}

/* Footer Bottom */
.footer-bottom {
	text-align: center;
	border-top: 1px solid rgba(201, 169, 90, 0.1);
	padding-top: 2rem;
}

.footer-copyright {
	font-size: 0.85rem;
	color: var(--color-muted);
	margin: 0;
	letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
	.site-footer {
		padding: 2rem 1rem;
	}

	.footer-row {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.footer-social {
		justify-content: center;
		margin-top: 1rem;
	}

	.footer-menu {
		flex-direction: column;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.site-footer {
		padding: 1.5rem 1rem;
		margin-top: 2rem;
	}

	.footer-row {
		gap: 1.5rem;
	}

	.footer-social {
		gap: 1rem;
	}

	.social-link {
		width: 28px;
		height: 28px;
	}

	.social-link svg {
		width: 14px;
		height: 14px;
	}
}
