/* Footer Section */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 30px;
  transition: background-color 0.3s ease;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 14px;
}

.foot-brand img {
  width: 34px;
  height: 36px;
  object-fit: contain;
}

footer p {
  font-size: 15px;
  color: var(--footer-muted);
  max-width: 340px;
  line-height: 1.55;
}

.foot-col h4 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7fa8c6;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.foot-col a,
.foot-col span {
  display: block;
  font-size: 15px;
  color: var(--footer-text);
  margin-bottom: 11px;
  transition: color 0.15s ease;
}

.foot-col a:hover {
  color: #ffffff;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.18s, color 0.18s, transform 0.15s;
}

.socials a:hover {
  background: var(--amber);
  color: #20160a;
  transform: translateY(-2px);
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--footer-muted);
}

@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
