/* Footer */
.site-footer {
	background: var(--rm-sage-800);
	color: var(--rm-cream-100);
	padding: 4rem 0 0;
	margin-top: 4rem;
}
.footer-inner {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	padding-bottom: 3rem;
}
@media (min-width: 768px) {
	.footer-inner { grid-template-columns: repeat(3, 1fr); }
}
.footer-brand {
	color: var(--rm-cream-50);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
.footer-tagline { color: var(--rm-cream-200); font-size: 0.9rem; }
.footer-heading {
	color: var(--rm-cream-50);
	font-size: 1.125rem;
	margin-bottom: 1rem;
}
.footer-menu, .footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-menu li, .footer-contact li { padding: 0.375rem 0; font-size: 0.9rem; }
.footer-menu a, .footer-contact a {
	color: var(--rm-cream-200);
	transition: color .2s;
}
.footer-menu a:hover, .footer-contact a:hover { color: var(--rm-cream-50); }
.footer-bottom {
	border-top: 1px solid var(--rm-sage-700);
	padding: 1.5rem 0;
	text-align: center;
	font-size: 0.75rem;
	color: var(--rm-cream-300);
}

/* WhatsApp floating button */
.whatsapp-float {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 50;
	background: #25D366;
	color: #fff;
	padding: 1rem;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0,0,0,0.2);
	transition: transform .2s, background .2s;
	display: inline-flex;
}
.whatsapp-float:hover { transform: scale(1.05); background: #20bd5a; color: #fff; }
