.site-footer {
  background: #576238;
  color: #f0eadc;
  padding: 5rem 9% 0;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(240, 234, 220, 0.15);
}

.footer-logo {
  font-family: "Times New Roman", Times, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f0eadc;
  text-decoration: none;
  border-top: 2px solid rgba(240, 234, 220, 0.5);
  border-bottom: 2px solid rgba(240, 234, 220, 0.5);
  padding: 6px 10px;
  letter-spacing: 2px;
  display: inline-block;
  transition: letter-spacing 0.25s;
}

.footer-logo:hover {
  letter-spacing: 6px;
}

.footer-logo span {
  color: #f0eadc;
}

.footer-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(240, 234, 220, 0.65);
  line-height: 1.8;
  margin-top: 1.6rem;
  max-width: 32rem;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}

.footer-socials a {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(240, 234, 220, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 234, 220, 0.75);
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: rgba(240, 234, 220, 0.12);
  border-color: rgba(240, 234, 220, 0.6);
  color: #f0eadc;
  transform: translateY(-2px);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(240, 234, 220, 0.45);
  margin-bottom: 2rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-nav ul li a {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(240, 234, 220, 0.75);
  text-decoration: none;
  transition: all 0.2s ease;
  text-transform: none;
}

.footer-nav ul li a:hover {
  color: #f0eadc;
  letter-spacing: 0.5px;
}

.footer-contact p {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(240, 234, 220, 0.75);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-transform: none;
}

.footer-contact p i {
  font-size: 1.5rem;
  color: rgba(240, 234, 220, 0.45);
  flex-shrink: 0;
}

.footer-contact p a {
  color: rgba(240, 234, 220, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact p a:hover {
  color: #f0eadc;
}

.footer-hours {
  margin-top: 0.5rem;
  font-size: 1.3rem !important;
  color: rgba(240, 234, 220, 0.5) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2.2rem 0;
}

.footer-bottom p {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(240, 234, 220, 0.4);
  text-transform: none;
  margin: 0;
}

.footer-credit {
  color: rgba(240, 234, 220, 0.35) !important;
  font-size: 1.1rem !important;
}

.footer-credit i {
  color: rgba(220, 100, 100, 0.6);
  font-size: 1rem;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 4rem 5% 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
