/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--green-800);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 2rem;
}

.ft-gr {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

/* ── Brand column ── */
.ft-brand .ft-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
}

.ft-brand .ft-logo img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.ft-brand .ft-logo span {
  font-family: var(--fh);
  font-size: 1.4rem;
  color: #fff;
}

.ft-brand .ft-logo span em {
  font-style: normal;
  color: var(--orange-g);
}

.ft-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}

/* ── Link columns ── */
.ft-col h4 {
  font-family: var(--fd);
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.ft-col li {
  margin-bottom: 0.65rem;
}

.ft-col li a {
  font-size: 0.88rem;
}

.ft-col li a:hover { color: var(--orange-g); }

/* ── Contact info items ── */
.ft-ci {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
}

.ft-ci .fi {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--rr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-g);
  flex-shrink: 0;
}

/* ── Map ── */
.ft-map {
  margin-top: 1rem;
  border-radius: var(--rr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-map iframe {
  display: block;
  width: 100%;
  height: 160px;
  filter: invert(0.9) hue-rotate(160deg) saturate(0.6);
}

/* ── Bottom bar ── */
.ft-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.ft-bar a {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 1rem;
}

.ft-bar a:hover { color: rgba(255, 255, 255, 0.9); }
