/* ==========================================================================
   SoFlo Motorcycles — Site Footer
   ========================================================================== */

.site-footer {
	background: var(--color-ink);
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.6;
}

/* ==========================================================================
   Main block (4 columns)
   ========================================================================== */

.site-footer__main {
	padding: 60px 0 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ----- Brand column ----- */
.site-footer__brand {
	padding-right: 24px;
}

.site-footer__logo {
	display: inline-block;
	margin-bottom: 18px;
	text-decoration: none;
}

.site-footer__logo img {
	max-width: 160px;
	height: auto;
}

.site-footer__wordmark {
	font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
	font-size: 28px;
	color: var(--color-bg);
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.site-footer__tagline {
	color: var(--color-bg);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 12px;
	max-width: 320px;
}

.site-footer__blurb {
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
	max-width: 360px;
}

/* ----- Columns (browse / locations / connect) ----- */
.site-footer__heading {
	font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.22em;
	color: var(--brand-primary);
	text-transform: uppercase;
	margin: 0 0 16px;
}

.site-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer__list li {
	margin-bottom: 8px;
}

.site-footer__list a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	text-decoration: none;
	transition: color 0.15s ease, transform 0.15s ease;
	display: inline-block;
}

.site-footer__list a:hover,
.site-footer__list a:focus {
	color: var(--brand-primary);
	transform: translateX(2px);
}

/* ==========================================================================
   Bottom bar
   ========================================================================== */

.site-footer__bottom {
	padding: 22px 0;
	background: var(--color-ink);
}

.site-footer__bottom .copy {
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	letter-spacing: 0.04em;
}

.site-footer__bottom .copy a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.15s ease;
}

.site-footer__bottom .copy a:hover,
.site-footer__bottom .copy a:focus {
	color: var(--brand-primary);
}

.site-footer__sep {
	color: rgba(255, 255, 255, 0.25);
	margin: 0 6px;
}

.site-footer__bottom .credit {
	text-align: right;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer__bottom .credit .site-by {
	margin-right: 8px;
	vertical-align: middle;
}

.site-footer__bottom .credit img {
	height: 18px;
	width: auto;
	vertical-align: middle;
	opacity: 0.6;
	transition: opacity 0.15s ease;
}

.site-footer__bottom .credit a:hover img,
.site-footer__bottom .credit a:focus img {
	opacity: 1;
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767px) {

	.site-footer__main {
		padding: 40px 0 30px;
	}

	.site-footer__brand {
		padding-right: 0;
		margin-bottom: 24px;
	}

	.site-footer__bottom {
		padding: 18px 0;
	}

	.site-footer__bottom .copy {
		text-align: center;
		margin-bottom: 10px;
	}

	.site-footer__bottom .credit {
		text-align: center;
	}

}