/* ==========================================================
 * Custom Footer – Thuan Viet 1925
 * ========================================================== */

.tv-footer {
	background: linear-gradient(180deg, #1a1207 0%, #0d0903 100%);
	color: #d4c9b0;
	font-size: 14px;
	line-height: 1.7;
}

/* Main area */
.tv-footer__main {
	padding: 60px 0 40px;
}

/* Grid: 4 columns */
.tv-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
}

/* Column headings */
.tv-footer__heading {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .8px;
	color: #c7952c;
	margin: 0 0 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(199, 149, 44, .25);
}

/* Brand column */
.tv-footer__col--brand {
	padding-right: 20px;
}
.tv-footer__logo {
	display: inline-block;
	margin-bottom: 14px;
}
.tv-footer__logo img {
	height: 60px;
	width: auto;
	filter: brightness(1.1);
}
.tv-footer__tagline {
	margin: 0 0 18px;
	font-size: 13.5px;
	color: #a89a7e;
	line-height: 1.65;
}

/* Social links */
.tv-footer__social {
	display: flex;
	gap: 10px;
}
.tv-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(199, 149, 44, .12);
	color: #c7952c;
	text-decoration: none;
	transition: background .2s, color .2s, transform .2s;
}
.tv-footer__social-link:hover {
	background: #c7952c;
	color: #fff;
	transform: scale(1.1);
}

/* Quick links */
.tv-footer__links {
	margin: 0;
	padding: 0;
	list-style: none;
}
.tv-footer__links li {
	margin-bottom: 10px;
}
.tv-footer__links a {
	color: #d4c9b0;
	text-decoration: none;
	transition: color .15s, padding-left .15s;
	font-size: 13.5px;
}
.tv-footer__links a:hover {
	color: #c7952c;
	padding-left: 4px;
}

/* Hours */
.tv-footer__hours {
	font-size: 13.5px;
	color: #d4c9b0;
	line-height: 1.8;
}

/* Contact list */
.tv-footer__contact {
	margin: 0;
	padding: 0;
	list-style: none;
}
.tv-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 13.5px;
}
.tv-footer__contact li svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: #c7952c;
}
.tv-footer__contact a {
	color: #d4c9b0;
	text-decoration: none;
	transition: color .15s;
}
.tv-footer__contact a:hover {
	color: #c7952c;
}

/* Copyright bar */
.tv-footer__bottom {
	border-top: 1px solid rgba(199, 149, 44, .15);
	padding: 18px 0;
	text-align: center;
}
.tv-footer__bottom p {
	margin: 0;
	font-size: 12.5px;
	color: #7a6f5c;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
	.tv-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}
@media (max-width: 600px) {
	.tv-footer__main {
		padding: 40px 0 28px;
	}
	.tv-footer__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.tv-footer__col--brand {
		padding-right: 0;
		text-align: center;
	}
	.tv-footer__social {
		justify-content: center;
	}
	.tv-footer__heading {
		text-align: center;
	}
	.tv-footer__links,
	.tv-footer__contact,
	.tv-footer__hours {
		text-align: center;
	}
	.tv-footer__contact li {
		justify-content: center;
	}
}
