/* ── KAIKO Footer ── */

.kaiko-footer {
	background: #1a5c52;
	color: rgba(255, 255, 255, 0.85);
	font-family: 'Inter', -apple-system, system-ui, 'Segoe UI', sans-serif;
	padding: 0;
}

.kaiko-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem 3rem;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 3rem;
}

/* ── Brand Column ── */
.kaiko-footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.kaiko-footer-logo {
	font-family: 'Gotham', 'Gotham Bold', -apple-system, sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #ffffff !important;
	text-decoration: none !important;
}
.kaiko-footer-logo:hover {
	color: #ffffff !important;
}

.kaiko-footer-tagline {
	font-size: 0.9rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	max-width: 320px;
	margin: 0;
}

/* ── Social Links ── */
.kaiko-footer-social {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.kaiko-footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8) !important;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease;
}
.kaiko-footer-social-link:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff !important;
}
.kaiko-footer-social-link svg {
	display: block;
}

/* ── Columns ── */
.kaiko-footer-col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.kaiko-footer-heading {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

.kaiko-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.kaiko-footer-links a {
	color: rgba(255, 255, 255, 0.85) !important;
	text-decoration: none !important;
	font-size: 0.92rem;
	font-weight: 400;
	transition: color 0.2s ease;
}
.kaiko-footer-links a:hover {
	color: #ffffff !important;
}

.kaiko-footer-location {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.92rem;
}

/* ── Copyright Bar ── */
.kaiko-footer-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 2rem;
}

.kaiko-footer-bar p {
	margin: 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.4);
}

/* ── Tablet ── */
@media (max-width: 1024px) {
	.kaiko-footer-inner {
		grid-template-columns: 1fr 1fr;
	}
	.kaiko-footer-brand {
		grid-column: 1 / -1;
	}
}

/* ── Mobile ── */
@media (max-width: 768px) {
	.kaiko-footer-inner {
		grid-template-columns: 1fr;
		padding: 3rem 1.5rem 2rem;
		gap: 2rem;
	}
	.kaiko-footer-tagline {
		max-width: 100%;
	}
	.kaiko-footer-bar {
		padding: 1.25rem 1.5rem;
	}
}
