footer {
	padding: 60px 5% 40px;
	border-top: 1px solid var(--border);
}

.footer-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-logo {
	font-family: var(--font-mono);
	font-size: 18px;
	color: var(--accent);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-sub {
	font-family: var(--font-mono);
	font-size: 15px;
	color: var(--text-muted);
	margin-top: 8px;
}

.footer-links {
	display: flex;
	gap: 40px;
	list-style: none;
}

.footer-links a {
	font-family: var(--font-mono);
	font-size: 14px;
	color: var(--text-muted);
	text-decoration: none;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.2s;
}

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

.footer-built {
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--text-muted);
	text-align: center;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

.footer-built a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-built a:hover {
	color: var(--text);
}
