/* FOOTER */
.site-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.1rem 2.5rem;
	background: var(--bg);
	border-top: 0.5px solid var(--border);
	flex-wrap: wrap;
	gap: 1rem;
	transition: all 0.3s ease;
}

.site-footer:hover {
	background: var(--bg2);
}

.foot-logo {
	font-family: var(--serif);
	font-size: 1.15rem;
	letter-spacing: -0.01em;
}

.foot-logo span {
	font-style: italic;
	color: var(--gold);
}

.foot-copy {
	font-size: 12px;
	color: var(--hint);
}

.foot-nav {
	display: flex;
	gap: 1.4rem;
	list-style: none;
}

.foot-nav a {
	text-decoration: none;
	color: var(--mute);
	font-size: 14px;
	transition: color 0.2s, transform 0.2s;
	display: inline-block;
}

.foot-nav a:hover {
	transform: translateY(-1px);
	text-decoration: underline;
}

@media (max-width: 600px) {
	.site-footer {
		padding: 1rem 1.25rem;
	}
}