/**
 * JET ATLAS — Footer widget.
 */
.jac-ft {
	position: relative;
	background: #0A0A0A;
	padding: 80px 40px 32px;
	overflow: hidden;
	isolation: isolate;
	--jac-ft-gold: #C9A96E;
	--jac-ft-text: rgba(250,246,238,0.72);
}
.jac-ft::before {
	content: "";
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background: radial-gradient(ellipse at 0% 0%, rgba(201,169,110,0.12) 0%, transparent 45%);
}

.jac-ft__inner {
	position: relative; z-index: 1;
	max-width: 1280px; margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	padding-bottom: 56px;
}
@media (min-width: 720px) {
	.jac-ft__inner { grid-template-columns: 1.6fr 1fr 1fr; }
}
@media (min-width: 1000px) {
	.jac-ft__inner { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; }
}

/* Brand */
.jac-ft__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.jac-ft__logo { height: 54px; width: auto; display: block; }
.jac-ft__wordmark { font-family: "Cormorant Garamond", serif; font-size: 30px; font-weight: 600; color: #FAF6EE; letter-spacing: 1px; }
.jac-ft__tagline {
	margin: 0; max-width: 42ch;
	font-family: "Inter", sans-serif; font-size: 14.5px; line-height: 1.7;
	color: var(--jac-ft-text);
}
.jac-ft__socials { display: flex; gap: 10px; }
.jac-ft__soc {
	width: 40px; height: 40px;
	display: inline-flex; align-items: center; justify-content: center;
	color: #FAF6EE; border: 1px solid rgba(250,246,238,0.25); border-radius: 50%;
	font-size: 14px; text-decoration: none;
	transition: background-color .4s ease, color .4s ease, border-color .4s ease, transform .4s cubic-bezier(.16,1,.3,1);
}
.jac-ft__soc:hover { background: var(--jac-ft-gold); color: #0A0A0A; border-color: var(--jac-ft-gold); transform: translateY(-2px); }

/* Columns */
.jac-ft__col { display: flex; flex-direction: column; gap: 14px; }
.jac-ft__col-title {
	font-family: "Outfit","Inter",sans-serif;
	font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
	color: var(--jac-ft-gold);
	margin-bottom: 4px;
}
.jac-ft__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.jac-ft__link {
	font-family: "Inter", sans-serif; font-size: 14.5px;
	color: var(--jac-ft-text); text-decoration: none;
	transition: color .3s ease, padding-left .3s ease;
}
.jac-ft__link:hover { color: var(--jac-ft-gold); padding-left: 4px; }

/* Contact */
.jac-ft__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.jac-ft__contact li { display: flex; align-items: flex-start; gap: 12px; font-family: "Inter", sans-serif; font-size: 14.5px; color: var(--jac-ft-text); }
.jac-ft__contact i { color: var(--jac-ft-gold); font-size: 13px; margin-top: 4px; width: 16px; text-align: center; flex-shrink: 0; }
.jac-ft__contact a { color: var(--jac-ft-text); text-decoration: none; transition: color .3s ease; }
.jac-ft__contact a:hover { color: var(--jac-ft-gold); }

/* Bottom bar */
.jac-ft__bar {
	position: relative; z-index: 1;
	max-width: 1280px; margin: 0 auto;
	padding-top: 26px;
	border-top: 1px solid rgba(201,169,110,0.20);
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.jac-ft__copy { font-family: "Outfit","Inter",sans-serif; font-size: 12px; letter-spacing: 0.04em; color: rgba(250,246,238,0.5); }
.jac-ft__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 22px; }
.jac-ft__legal a {
	font-family: "Outfit","Inter",sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
	color: rgba(250,246,238,0.5); text-decoration: none; transition: color .3s ease;
}
.jac-ft__legal a:hover { color: var(--jac-ft-gold); }

@media (max-width: 600px) {
	.jac-ft { padding: 56px 20px 24px; }
	.jac-ft__inner { gap: 36px; padding-bottom: 40px; }
	.jac-ft__bar { flex-direction: column; align-items: flex-start; }
}
