/* ── Footer ───────────────────────────────────────────────────────────────── */
.gans-footer {
  position: relative;
  overflow: hidden;
  background: var(--stone-deep);
  color: var(--steel, #9a9a9a);
}

.gans-footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.gans-footer__bg svg {
  position: absolute;
  right: -6%;
  bottom: -8%;
  height: 88%;
  width: auto;
  color: var(--gold);
  opacity: 0.5;
}

.gans-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  padding: 5rem 2rem;
}

@media (min-width: 768px) {
  .gans-footer__inner { padding-inline: 3rem; }
}

.gans-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .gans-footer__grid { grid-template-columns: repeat(6, 1fr); }
}

.gans-footer__brand {
  grid-column: span 2;
}

.gans-footer__logo {
  height: 28px;
  width: auto;
}

.gans-footer__description {
  margin-top: 1.5rem;
  max-width: 18rem;
  font-size: 13px;
  line-height: 1.6;
  color: var(--steel, #9a9a9a);
}

.gans-footer__socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.gans-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  color: var(--steel, #9a9a9a);
  transition: color 0.3s, background-color 0.3s;
}

.gans-footer__social svg {
  height: 18px;
  width: 18px;
}

.gans-footer__social:hover {
  background: rgba(var(--gold-rgb), 0.15);
  color: var(--cloud);
}

.gans-footer__col-heading {
  display: block;
  font-family: var(--font-suisse), sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.gans-footer__col-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.gans-footer__link {
  font-size: 13px;
  color: var(--steel, #9a9a9a);
  text-decoration: none;
  transition: color 0.3s;
}

.gans-footer__link:hover {
  color: var(--cloud);
}

.gans-footer__bottom {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(68, 68, 68, 0.4);
  padding-top: 2rem;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .gans-footer__bottom {
    flex-direction: row;
    align-items: center;
  }
}

.gans-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gans-footer__legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

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