site-footer {
	display: contents;
}

.footer-container-wrapper {
	height: calc(100svh - var(--header-h));
	overflow: clip;
	background: #000;
	color: #fff;
	display: flex;
	align-items: center;
}

.footer-container {
	--accent: #fc694c;

	position: relative;
	width: min(80%, 1400px);
	margin: 0 auto;
	padding: 3rem 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
}

/* Horizontal rules */
.footer-line {
	height: 1px;
	width: 100%;
	background: rgba(255, 255, 255, 0.45);
	flex-shrink: 0;

	&.up {
		margin-bottom: clamp(1rem, 3svh, 2.5rem);
	}

	&.down {
		margin-top: clamp(1rem, 3svh, 2.5rem);
	}
}

/* "Looking for temporary housing?" */
.footer-tagline {
	font-size: clamp(1.1rem, 2vw, 1.6rem);
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.03em;
	margin-bottom: 2rem;
}

/* Main row: CTA left, nav right */
.footer-main {
	flex: 1;
	display: flex;
	align-items: flex-start;
	gap: 4rem;
}

/* Left: heading + button */
.footer-cta {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.footer-cta-heading {
	font-family: 'Inter', sans-serif;
	font-size: clamp(3rem, 8vw, 8rem);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1;
	color: #fff;
}

/* CTA button — filled by default, empties out on hover */
.btn-cta-contact-us {
	display: inline-block;
	width: fit-content;
	padding: 1rem 2.5rem;
	font-size: clamp(0.9rem, 1.25vw, 1.1rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #fff;
	text-decoration: none;
	border: 1px solid var(--accent);
	border-radius: 100px;
	background: var(--accent);
	position: relative;
	overflow: hidden;
	transition: color 0.4s ease;
}

.btn-cta-contact-us::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--accent);
	transform: translateX(0);
	transition: transform 0.4s ease;
	z-index: -1;
}

.btn-cta-contact-us:hover {
	color: var(--accent);
	background: transparent;
}

.btn-cta-contact-us:hover::before {
	transform: translateX(100%);
}

/* Right: nav columns */
.footer-nav {
	display: flex;
	gap: 4rem;
	padding-top: 0.5rem;
	margin-right: 4rem;
}

.footer-nav-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-nav-label {
	font-size: clamp(0.9rem, 1.1vw, 1.1rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.4);
}

.footer-nav-group ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.footer-nav-group a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: clamp(1rem, 1.4vw, 1.35rem);
	transition: color 0.2s ease;
}

.footer-nav-group a:hover {
	color: #fff;
}

/* Bottom bar */
.footer-bottom {
	display: flex;
	gap: 2rem;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.3);
	flex-shrink: 0;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.3);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-bottom a:hover {
	color: rgba(255, 255, 255, 0.7);
}

/* Mobile */
@media (max-width: 768px) {
	.footer-container-wrapper {
		height: auto;
		min-height: calc(100svh - var(--header-h));
	}

	.footer-container {
		width: 90%;
		padding: 2.5rem 0;
	}

	.footer-main {
		flex-direction: column;
		gap: 2.5rem;
	}

	.footer-nav {
		gap: 2.5rem;
	}

	.footer-bottom {
		flex-wrap: wrap;
		gap: 1rem;
	}
}
