.site-footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 0;
  font-family: 'Inter', sans-serif;
}
.ft-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 5% 2.5rem;
}
.ft-brand {}
.ft-logo img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
  display: block;
}
.ft-tagline {
  color: rgba(245,245,240,.5);
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 280px;
}
.ft-contact-row {
  margin-bottom: 1rem;
}
.ft-phone {
  color: rgba(245,245,240,.7);
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
}
.ft-phone:hover { color: #c9a84c; }
.ft-social {
  display: flex;
  gap: .6rem;
}
.ft-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,245,240,.6);
  transition: all .2s;
  text-decoration: none;
}
.ft-social a:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}
.ft-heading {
  color: #f5f5f0;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.ft-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.ft-list a {
  color: rgba(245,245,240,.5);
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s;
}
.ft-list a:hover { color: #c9a84c; }
.ft-areas li {
  color: rgba(245,245,240,.45);
  font-size: .82rem;
}
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ft-bottom span {
  color: rgba(245,245,240,.35);
  font-size: .78rem;
}
.ft-bottom a {
  color: rgba(245,245,240,.35);
  font-size: .78rem;
  text-decoration: none;
  transition: color .2s;
}
.ft-bottom a:hover { color: #c9a84c; }

@media (max-width: 900px) {
  .ft-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 500px) {
  .ft-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 5% 2rem;
  }
  .ft-bottom {
    flex-direction: column;
    gap: .5rem;
    text-align: center;
  }
}
