/* ===================== Footer ===================== */
.footer {
  background: #2b2b2b;   /* dark charcoal */
  color: #e6e6e6;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr; /* Company wider, Contact + Links narrower */
  gap: 2rem;
}

.footer strong,
.footer h4 {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

.footer p,
.footer .list li {
  color: #cfcfcf;
  margin-bottom: 0.4rem;
}

.footer .list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer a {
  color: #cfcfcf;
  text-decoration: none;
}
.footer a:hover {
  color: #d35400; /* rust orange hover */
  text-decoration: underline;
}

.subfooter {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #aaa;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
