footer {
    background: #201f1e;
    color: white;
    padding: 4rem 2rem 2rem;
}

footer {
    flex-shrink: 0;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-col h4 {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 0.8rem;
}

.footer-col a {
	color: #a19f9d;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: white;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid #3b3a39;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #a19f9d;
	font-size: 0.9rem;
}

/* ==========================
   MOBILE FOOTER
   ========================== */
@media (max-width: 768px) {

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 0.5rem;
		font-size: 0.8rem;
	}
}