/* ==========================================================================
   epimedic – Footer
   ========================================================================== */

.epi-footer {
  background: var(--epi-forest);
  color: rgba(255,255,255,0.75);
  font-family: var(--epi-font-body);
  padding: 72px 0 0;
}
.epi-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .epi-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .epi-footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
.epi-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
  line-height: 0;
}
.epi-footer__logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 200px;
  margin: 0;
  opacity: 1;
}
.epi-footer__tagline { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.6); max-width: 260px; }
.epi-footer__social { display: flex; gap: 12px; margin-top: 20px; }
.epi-footer__social a {
  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.75);
  transition: background 0.2s, color 0.2s;
}
.epi-footer__social a:hover { background: var(--epi-petrol); color: var(--epi-white); }
.epi-footer__heading {
  font-family: var(--epi-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--epi-white);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}
.epi-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.epi-footer__links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.epi-footer__links a:hover { color: var(--epi-petrol); }
.epi-footer__address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.epi-footer__contact-list { list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.epi-footer__contact-list a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.epi-footer__contact-list a:hover { color: var(--epi-petrol); }
.epi-footer__hours {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 20px;
  line-height: 1.6;
}
.epi-footer__cta { font-size: 0.88rem !important; padding: 10px 20px !important; }
.epi-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  text-align: center;
}
.epi-footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.epi-footer__bottom a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
.epi-footer__bottom a:hover { color: var(--epi-petrol); }
