.footer {
  background-color: var(--dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(212, 160, 23, 0.12);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.footer__name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

.footer__name span {
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav a {
  font-size: 0.875rem;
  color: var(--grey);
  transition: color var(--transition), padding-left var(--transition);
}

.footer__nav a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: var(--grey);
}

.footer__contact-item i {
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.footer__contact-item a {
  color: var(--grey);
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  color: var(--grey);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: var(--grey);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--white);
}

@media (max-width: 860px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
