/* =========================
   FOOTER
   ========================= */

.rv-footer {
	padding: var(--rv-space-3xl) 16px;
	border-top: 2px solid var(--rv-color-gray-700);
	background: var(--rv-bg-site);
	color: var(--rv-color-gray-100);
}

.rv-footer__inner {
	max-width: 1100px;
	margin: 0 auto;
}

/* =========================
   TOP SECTION
   ========================= */

.rv-footer__top {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* =========================
   LOGO / BRAND
   ========================= */

.rv-footer__logo {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.rv-footer__logo a,
.rv-footer__logo a:visited {
	color: var(--rv-color-gray-100);
	text-decoration: none;
}

.rv-footer__logo a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.rv-footer__logo-text {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--rv-color-gray-100);
}

.rv-footer__logo-mark {
	display: block;
	width: auto;
	height: 30px;
	transform: translateY(-4px);
}

/* =========================
   TAGLINE
   ========================= */

.rv-footer__tagline {
	max-width: 520px;
	margin: 10px 0 0;
	line-height: 1.5;
	color: var(--rv-color-gray-400);
}

/* =========================
   SOCIAL
   ========================= */

.rv-footer__social {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	margin-top: 25px;
}

.rv-footer__social img {
	display: block;
	width: auto;
	height: 27.5px;
	opacity: 0.85;
	transition:
		opacity var(--rv-dur-ui) ease,
		transform var(--rv-dur-ui) ease;
}

.rv-footer__social a:hover img {
	opacity: 1;
	transform: translateY(-1px);
}

/* =========================
   COLUMNS
   ========================= */

.rv-footer__cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.rv-footer__title {
	margin: 0 0 10px;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rv-color-gray-500);
}

.rv-footer__links {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rv-footer__links a {
	color: var(--rv-color-gray-100);
	text-decoration: none;
	transition: opacity var(--rv-dur-ui) ease;
}

.rv-footer__links a:hover {
	opacity: 0.85;
}

/* =========================
   DISCLAIMER
   ========================= */

.rv-footer__disclaimer {
	margin: 36px 0 28px;
	padding-top: 22px;
	border-top: 1px solid var(--rv-border-subtle);
	text-align: center;
}

.rv-footer__disclaimer p {
	max-width: 720px;
	margin: 0 auto;
	font-size: 12px;
	line-height: 1.6;
	color: var(--rv-color-gray-500);
}

/* =========================
   BOTTOM BAR
   ========================= */

.rv-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
	font-size: 13px;
	color: var(--rv-color-gray-500);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (min-width: 900px) {
	.rv-footer__top {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
	}

	.rv-footer__cols {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 36px;
	}

	.rv-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}