/* Footer */
.footer--section {
	background-color: var(--color-footer-green);
	color: var(--color-text-white);
	padding: 50px 0 40px;
}

.footer--address {
	font-family: 'PP Cirka', serif;
	font-size: 1.5rem;
	line-height: 1.5;
	text-align: center;
	margin: 0 0 40px;
}

.footer--row {
	align-items: center;
	gap: 30px 0;
	text-align: center;
}

.footer--col {
	width: 100%;
}

/* Left column: Boundary + icons inline */
.footer--col-left {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.footer--boundary {
	font-family: 'PP Cirka', serif;
	font-size: 1.25rem;
	color: var(--color-text-white);
	text-decoration: none;
	letter-spacing: 0.02em;
}

.footer--boundary:hover,
.footer--boundary:focus {
	color: var(--color-gold);
}

.footer--boundary-logo {
	height: 1em;
	width: auto;
}

.footer--icons {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer--icons img {
	width: 18px;
	height: 18px;
	opacity: 0.8;
}

/* Center column: View Map button */
.footer--col-center {
	display: flex;
	justify-content: center;
}

.footer--view-map {
	min-width: 180px;
	text-align: center;
}

/* Right column: Credits + Legal */
.footer--credits {
	font-family: 'PP Cirka', serif;
	font-size: 1.125rem;
	margin: 0 0 4px;
}

.footer--credits a {
	color: var(--color-text-white);
	text-decoration: none;
}

.footer--credits a:hover,
.footer--credits a:focus {
	color: var(--color-gold);
}

.footer--legal-links {
	font-family: 'PP Cirka', serif;
	font-size: 1.125rem;
	margin: 0;
}

.footer--legal-links a {
	color: var(--color-text-white);
	text-decoration: none;
}

.footer--legal-links a:hover,
.footer--legal-links a:focus {
	color: var(--color-gold);
}

.footer--separator {
	margin: 0 6px;
	opacity: 0.5;
}

/* Desktop: 3 columns */
@media (min-width: 992px) {
	.footer--row {
		flex-wrap: nowrap;
		gap: 0;
	}

	.footer--col {
		flex: 1;
	}

	.footer--col-left {
		justify-content: flex-start;
	}

	.footer--col-right {
		text-align: right;
	}
}
