.footer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: stretch;
  gap: 48px;
  padding: 46px var(--container-margin);
  border-top: 1px solid var(--line);
  background: var(--hero-bg);
}

.footer-about { max-width: 310px; }
.footer-brand { display: inline-flex; margin-bottom: 18px; }
.footer-contact { width: max-content; max-width: 100%; display: grid; gap: 0; align-self: start; font-style: normal; }
.footer-contact strong { margin-bottom: 4px; font-weight: 800; }

.contact-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--text);
  line-height: 1.55;
}

.contact-row svg {
  width: 18px;
  height: 18px;
  color: #e9a49e;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-row:hover { color: var(--green); }
.contact-indent span { grid-column: 2; }
.mini-map {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: var(--contact-map-height, 190px);
  min-height: 0;
  border-radius: 8px;
  border: 1px solid rgba(77, 90, 67, .14);
  background: #f7f6f3;
}

.mini-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-map .map-link {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 4px;
  color: var(--green);
  background: #f6f4f5;
  font-size: 14px;
  font-weight: 650;
  transition: color .25s ease, transform .25s ease;
}

.mini-map .map-link::after { content: " →"; }
.mini-map .map-link:hover { color: var(--green-dark); transform: translateX(3px); }
