.site-footer {
  background: linear-gradient(165deg, var(--gc-navy) 0%, var(--gc-navy-dark) 100%);
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 2rem;
  padding: var(--gc-space-8) 0 var(--gc-space-6);
}

.footer-title,
.footer-brand .site-title {
  color: #fff;
}

.footer-brand .brand-mark {
  background: linear-gradient(140deg, var(--gc-cyan), var(--gc-blue));
  color: #fff;
}

.footer-text {
  margin: 1rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-menu,
.social-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu {
  display: grid;
  gap: 0.45rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: var(--gc-accent-soft);
}

.footer-social-label {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gc-accent-soft);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-list a {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--gc-radius);
  color: #fff;
  text-decoration: none;
  transition: background var(--gc-transition), border-color var(--gc-transition), color var(--gc-transition);
}

.social-list a:hover,
.social-list a:focus-visible {
  background: var(--gc-accent);
  border-color: var(--gc-accent);
  color: var(--gc-primary-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.15rem 0 1.4rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-logo .custom-logo-link img {
  max-height: 64px;
}
