/*--------------------------------------------------------------
PUTUSHART PREMIUM FOOTER
--------------------------------------------------------------*/

.site-footer {
	width: 100%;
	background: #111111;
	color: #ffffff;
}

.footer-container {
	width: 92%;
	max-width: 1320px;
	margin: 0 auto;
}


/*--------------------------------------------------------------
MAIN FOOTER
--------------------------------------------------------------*/

.footer-main {
	padding: 100px 0 80px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 0.8fr;
	gap: 70px;
}


/*--------------------------------------------------------------
BRAND
--------------------------------------------------------------*/

.footer-brand {
	max-width: 380px;
}

.footer-brand__name {
	display: inline-block;
	margin-bottom: 28px;
	color: #ffffff;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 4px;
	line-height: 1;
	text-decoration: none;
}

.footer-brand__description {
	margin: 0;
	max-width: 350px;
	color: #bdbdbd;
	font-size: 15px;
	line-height: 1.9;
}

.footer-brand__email {
	display: inline-block;
	margin-top: 28px;
	color: #d4b27d;
	font-size: 15px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-brand__email:hover,
.footer-brand__email:focus-visible {
	color: #ffffff;
}


/*--------------------------------------------------------------
FOOTER COLUMNS
--------------------------------------------------------------*/

.footer-heading {
	margin: 0 0 28px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links li {
	margin-bottom: 15px;
}

.footer-links li:last-child {
	margin-bottom: 0;
}

.footer-links a {
	position: relative;
	display: inline-block;
	color: #bdbdbd;
	font-size: 15px;
	line-height: 1.6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a::after {
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 0;
	height: 1px;
	background: #d4b27d;
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	color: #ffffff;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}


/*--------------------------------------------------------------
BOTTOM FOOTER
--------------------------------------------------------------*/

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-top: 28px;
	padding-bottom: 28px;
}

.footer-bottom p {
	margin: 0;
	color: #8f8f8f;
	font-size: 13px;
	line-height: 1.6;
}

.footer-bottom__statement {
	letter-spacing: 0.5px;
}


/*--------------------------------------------------------------
TABLET
--------------------------------------------------------------*/

@media (max-width: 1024px) {

	.footer-main {
		padding: 80px 0 65px;
	}

	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
		gap: 55px 40px;
	}

	.footer-brand {
		grid-column: 1 / -1;
		max-width: 550px;
	}

	.footer-brand__description {
		max-width: 520px;
	}

}


/*--------------------------------------------------------------
MOBILE
--------------------------------------------------------------*/

@media (max-width: 768px) {

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px 30px;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-bottom__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

}


@media (max-width: 576px) {

	.footer-main {
		padding: 70px 0 55px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.footer-brand {
		grid-column: auto;
	}

	.footer-brand__name {
		font-size: 22px;
	}

}
