/* Meru International School — footer */
:root {
  --footer-bg: #2b2a63; /* close to screenshot */
  --footer-text: rgba(255, 255, 255, 0.88);
  --footer-muted: rgba(255, 255, 255, 0.7);
  --footer-accent: #c9a227;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: 2rem;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.site-footer h4 {
  margin: 0 0 1rem 0;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--footer-accent);
}

.site-footer p {
  margin: 0 0 0.6rem 0;
  color: var(--footer-text);
  line-height: 1.65;
  font-size: 0.92rem;
}

.site-footer .muted {
  color: var(--footer-muted);
}

.site-footer a {
  color: var(--footer-text);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.site-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 2.5rem 0 1.5rem;
}

.site-footer__bottom {
  text-align: center;
  color: var(--footer-muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

