/* ── Footer container ─────────────────────────────────────────── */
.site-footer {
  background: #FDFBD4;
  font-family: Poppins, sans-serif;
  color: #161540;
  padding: 3rem 1rem 2rem;
}

/* ── Inner flex wrapper ───────────────────────────────────────── */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand__icon {
  height: 7rem;  /* match your previous font‐size */
  width: auto;
  display: block;
}
/* ── Brand text ───────────────────────────────────────────────── */
.footer-brand {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.6rem;
  text-decoration: none;
  color: #161540;
}

/* ── Column headings ──────────────────────────────────────────── */
.footer-col h5 {
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

/* ── Link lists ───────────────────────────────────────────────── */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin: 0.25rem 0;
}
.footer-col a {
  color: #161540;
  text-decoration: none;
}
.footer-col a:hover {
  text-decoration: underline;
}

/* ── Social icons ────────────────────────────────────────────── */
.social a:not(.btn-contact) {
  font-size: 1.8rem;
  margin-top: 1rem;
  margin-right: 0.8rem;
  color: inherit;
  text-decoration: none;
}
.social a:last-child {
  margin-right: 0;
}
.social a:hover {
  opacity: 0.7;
}

/* ── Contact us button ───────────────────────────────────────── */

.social .btn-contact {
  display: block;
  margin-top: 2rem;
  font-size: 1.1rem;
  padding: 0.6rem 1.2rem;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.social .btn-contact:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* ── Copyright strip ──────────────────────────────────────────── */
.footer-copy {
  text-align: center;
  font-size: 1rem;
  padding-top: 1.5rem;
}

/* ── Footer responsiveness (≤ 800px) ─────────────────────────── */
@media (max-width: 800px) {
  .footer-inner {gap: 1.5rem;}
  .footer-brand__icon {height: 5rem;}
  .footer-brand {font-size: 1.4rem;}
  .footer-col h5 {font-size: 1.1rem;}
  .footer-col a {font-size: 0.9rem;}

  .social a:not(.btn-contact) {
    font-size: 1.5rem;
    margin-top: 0.8rem;
    margin-right: 0.6rem;
  }

  .social .btn-contact {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

/* ── Footer stacking on phones (≤ 500px) ─────────────────────── */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand__icon {height: 4rem;}
  .footer-brand {font-size: 1.2rem;}
  .footer-col {width: 100%;}
  .footer-col h5 {font-size: 0.85rem;}
  .footer-col ul {display: inline-block;}
  .footer-col li {margin: 0.5rem 0;}

  .social a:not(.btn-contact) {
    font-size: 1.2rem;
    margin: 0 0.5rem 1rem;
  }

  .social .btn-contact {width: auto;}

  .footer-copy {
    font-size: 0.9rem;
    padding-top: 1rem;
  }
}
