/*
 * Footer Redesign — Phase 2
 * "Dark Forest / Imperial Gold / Cream"
 * Loaded site-wide (replaces ecome/footer.php).
 */

.eh-footer {
	--forest-900: #0f2a1e;
	--forest-700: #1f4a35;
	--gold-500: #cda349;
	--gold-400: #e3c878;
	--gold-600: #a9802f;
	--cream-50: #fdfcf7;
	--cream-100: #f7f3e8;
	--cream-200: #efe7d4;

	font-family: 'Nunito Sans', sans-serif;
	background: var(--forest-900);
	color: var(--cream-200);
}

.eh-footer a {
	text-decoration: none;
	color: inherit;
}

.eh-footer .gold {
	color: var(--gold-400);
	font-style: italic;
}

.eh-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 24px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
}

.eh-footer__logo {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	color: var(--cream-50);
	margin: 0 0 12px;
}

.eh-footer__desc {
	color: var(--cream-200);
	font-size: 0.9rem;
	line-height: 1.7;
	max-width: 320px;
	margin: 0 0 20px;
}

.eh-footer__direct {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.9rem;
}

.eh-footer__direct-label {
	color: var(--gold-400);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}

.eh-footer__direct a {
	color: var(--cream-50);
	font-weight: 700;
	transition: color 0.2s ease;
}

.eh-footer__direct a:hover {
	color: var(--gold-400);
}

.eh-footer__heading {
	font-family: 'Playfair Display', serif;
	color: var(--gold-400);
	font-size: 1.05rem;
	margin: 0 0 16px;
}

.eh-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.eh-footer__menu a {
	color: var(--cream-200);
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.eh-footer__menu a:hover {
	color: var(--gold-400);
}

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

.eh-footer__bottom .eh-footer__inner {
	display: block;
	padding: 20px 24px;
	text-align: center;
}

.eh-footer__bottom p {
	margin: 0;
	font-size: 0.8rem;
	color: var(--cream-200);
	opacity: 0.7;
}

@media (max-width: 960px) {
	.eh-footer__inner {
		grid-template-columns: 1fr 1fr;
	}

	.eh-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.eh-footer__inner {
		grid-template-columns: 1fr;
	}
}

/* Logo image */
.eh-footer__logo {
	padding: 0;
	margin-bottom: 16px;
}
.eh-footer__logo-img {
	height: 52px;
	width: auto;
	display: block;
	filter: brightness(0) invert(1);
	opacity: 0.92;
}