/* ============================================================
   Kairos Mind Wellness — Footer
   ============================================================ */

.kairos-footer {
	background: #1E3245;
	color: rgba(255,255,255,0.8);
	padding: 70px 0 0;
}

.kairos-footer__inner {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 48px);
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 48px;
}

/* Brand column */
.kairos-footer__brand-logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	text-decoration: none;
	margin-bottom: 16px;
}

.kairos-footer__brand-name {
	text-align: left;
}

.kairos-footer__brand-logo img {
	height: 64px;
	width: auto;
	opacity: 0.9;
	filter: brightness(0) invert(1);
}

.kairos-footer__brand-name {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: #ffffff;
	line-height: 1.2;
}

.kairos-footer__brand-name span {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.3em;
	color: #C9A545;
	font-weight: 400;
}

.kairos-footer__tagline {
	font-size: 0.95rem;
	font-style: italic;
	color: rgba(255,255,255,0.55);
	line-height: 1.6;
	margin: 0 0 20px;
}

.kairos-footer__meaning {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.05rem;
	font-style: italic;
	color: #C9A545;
	opacity: 0.95;
	letter-spacing: 0.04em;
	margin: 0 0 20px;
}

.kairos-footer__divider {
	width: 160px;
	height: 2px;
	background: #C9A545;
	margin-bottom: 16px;
}

.kairos-footer__hpcsa {
	font-size: 0.88rem;
	color: rgba(255,255,255,0.45);
	line-height: 1.6;
}

/* Column headings */
.kairos-footer__col-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #C9A545;
	margin: 0 0 20px;
}

/* Nav links */
.kairos-footer__nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.kairos-footer__nav a {
	font-size: 1rem;
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}

.kairos-footer__nav a:hover {
	color: #C9A545;
}

/* Contact info */
.kairos-footer__contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.kairos-footer__contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.97rem;
	color: rgba(255,255,255,0.7);
	line-height: 1.5;
}

.kairos-footer__contact-list svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 2px;
	stroke: #C9A545;
}

.kairos-footer__contact-list a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.kairos-footer__contact-list a:hover { color: #C9A545; }

/* Hours */
.kairos-footer__hours {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.kairos-footer__hours li {
	display: flex;
	justify-content: space-between;
	font-size: 0.93rem;
	color: rgba(255,255,255,0.65);
}

.kairos-footer__hours li .day { color: rgba(255,255,255,0.85); }
.kairos-footer__hours li .closed { color: rgba(255,255,255,0.35); }

/* Bottom bar */
.kairos-footer__bottom {
	margin-top: 56px;
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 20px clamp(20px, 4vw, 48px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.kairos-footer__copyright {
	font-size: 0.88rem;
	color: rgba(255,255,255,0.35);
}

.kairos-footer__credit {
	font-size: 0.88rem;
	color: rgba(255,255,255,0.35);
}

.kairos-footer__credit a {
	color: #C9A545;
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.kairos-footer__credit a:hover { opacity: 0.8; }

/* ── Desktop: brand column left-aligned ── */
@media (min-width: 601px) {
	.kairos-footer__brand-name { text-align: left; }
	.kairos-footer__tagline { text-align: left; }
	.kairos-footer__meaning { text-align: left; }
	.kairos-footer__hpcsa { text-align: left; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.kairos-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 600px) {
	.kairos-footer__inner {
		grid-template-columns: 1fr;
		gap: 36px;
		text-align: center;
	}

	.kairos-footer__brand-logo {
		justify-content: center;
	}

	.kairos-footer__divider {
		margin-left: auto;
		margin-right: auto;
	}

	.kairos-footer__nav {
		align-items: center;
	}

	.kairos-footer__contact-list li {
		justify-content: center;
	}

	.kairos-footer__hours li {
		justify-content: center;
		gap: 12px;
	}

	.kairos-footer__bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
