.site-footer {
  padding: 48px 0 24px;
  border: 0;
  background: #064734;
  color: #fff;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 36px;
}
.footer-logo { display: inline-flex; align-items: center; padding: 8px 0; }
.footer-logo img {
  display: block;
  width: 184px;
  height: auto;
  filter: brightness(0) invert(1);
}
.footer-contact { display: grid; gap: 4px; }
.footer-contact-label { justify-self: start; padding: 6px 0; font-size: 13px; color: var(--muted-on-dark); }
.footer-mail {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 4px 0;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.025em;
}
.footer-mail svg { width: 22px; height: 22px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.4; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 20px;
  color: var(--muted-on-dark);
  font-size: 12px;
}
.footer-bottom small { font-size: 12px; letter-spacing: .025em; }
.site-footer a:focus-visible { outline: 2px solid #c8ee88; outline-offset: 5px; }
@media (hover: hover) {
  .footer-contact a:hover { color: #c8ee88; }
}
@media (max-width: 600px) {
  .site-footer { padding: 32px 0 20px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 28px; }
  .footer-logo img { width: 156px; }
  .footer-contact { width: 100%; }
  .footer-mail { justify-content: space-between; gap: 16px; font-size: clamp(20px, 5.7vw, 26px); }
  .footer-bottom { padding-top: 18px; }
}
