/* ==========================================================================
   Siam District — Site footer
   ========================================================================== */

.site-footer {
	background: #000000;
	color: var(--sd-color-white);
}

.site-footer__container {
	max-width: var(--sd-container-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---- Top: brand + link columns ---- */

.site-footer__top .site-footer__container {
	padding: 64px 24px 48px;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 40px;
}

.site-footer__logo {
	display: inline-block;
}

.site-footer__logo img {
	height: 32px;
	width: auto;
	display: block;
}

.site-footer__blurb {
	margin: 20px 0 24px;
	max-width: 360px;
	font-family: var(--sd-font-body);
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
}

.site-footer__socials {
	display: flex;
	gap: 12px;
}

.site-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	color: var(--sd-color-white);
	transition: border-color 0.15s ease, color 0.15s ease;
}

.site-footer__social-link svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: none;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
	border-color: var(--sd-color-white);
	color: var(--sd-color-brand);
}

.site-footer__heading {
	margin: 0 0 20px;
	font-family: var(--sd-font-heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--sd-color-white);
}

.site-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__links a {
	font-family: var(--sd-font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	transition: color 0.15s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
	color: var(--sd-color-white);
}

.site-footer__soon {
	font-family: var(--sd-font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
}

/* ---- Bottom: copyright bar ---- */

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom .site-footer__container {
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.site-footer__copyright,
.site-footer__secure {
	margin: 0;
	font-family: var(--sd-font-body);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 999.98px) {
	.site-footer__top .site-footer__container {
		grid-template-columns: 1fr 1fr;
		row-gap: 40px;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 599.98px) {
	.site-footer__top .site-footer__container {
		grid-template-columns: 1fr;
		padding: 48px 24px 32px;
		gap: 32px;
	}

	.site-footer__bottom .site-footer__container {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}
