.footer {
	background: #111;
	padding: 60px 40px 32px;
	color: rgba(255,255,255,0.55);
}

.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.3); }
.footer-brand .brand-icon { background: rgba(255,255,255,0.08); }

.footer-desc {
	font-size: 13px;
	color: rgba(255,255,255,0.4);
	margin-top: 16px;
	max-width: 240px;
	line-height: 1.7;
}

.footer-title {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(255,255,255,0.35);
	margin-bottom: 18px;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	text-decoration: none;
	font-size: 13.5px;
	color: rgba(255,255,255,0.55);
	transition: var(--transition);
}

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

.footer-divider {
	height: 1px;
	background: rgba(255,255,255,0.06);
	margin: 48px 0 24px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	color: rgba(255,255,255,0.25);
	flex-wrap: wrap;
	gap: 12px;
}

.footer-social {
	display: flex;
	gap: 10px;
}

.footer-social a {
	width: 34px; height: 34px;
	border-radius: 8px;
	background: rgba(255,255,255,0.06);
	display: flex; align-items: center; justify-content: center;
	color: rgba(255,255,255,0.45);
	text-decoration: none;
	font-size: 15px;
	transition: var(--transition);
}

.footer-social a:hover {
	background: rgba(201,169,110,0.2);
	color: var(--gold);
}