/* Footer chrome */
.gc-footer {
  background: var(--gc-black);
  color: #fff;
}
.gc-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
  align-items: start;
}
.gc-footer__brand .gc-footer__logo { width: 220px; max-width: 60%; height: auto; }

.gc-footer__heading {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0 1.1rem;
}
.gc-footer__menu { list-style: none; margin: 0; padding: 0; }
.gc-footer__menu li { margin-bottom: .6rem; }
.gc-footer__menu a { color: #fff; text-decoration: none; font-weight: 500; }
.gc-footer__menu a:hover { color: var(--gc-red); }

.gc-footer__bar {
  border-top: 1px solid rgba(255,255,255,.12);
}
.gc-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.25rem;
  flex-wrap: wrap;
}
.gc-footer__copyright,
.gc-footer__credit { margin: 0; font-size: .85rem; color: rgba(255,255,255,.75); }
.gc-footer__credit a { color: #fff; }
.gc-footer__credit a:hover { color: var(--gc-red); }

/* Floating CTA */
.gc-floating-cta {
  position: fixed;
  right: 50px; bottom: 50px;
  z-index: 90;
  background: var(--gc-red);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  padding: 16px 26px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}
.gc-floating-cta:hover { background: var(--gc-black); color: #fff; text-decoration: none; transform: translateY(-2px); }

@media (max-width: 860px) {
  .gc-footer__inner { grid-template-columns: 1fr 1fr; }
  .gc-footer__brand { grid-column: 1 / -1; text-align: center; }
  .gc-footer__brand .gc-footer__logo { margin-inline: auto; max-width: 220px; }
  .gc-footer__bar-inner { justify-content: center; text-align: center; }
  .gc-floating-cta { right: 12px; bottom: 12px; padding: 12px 18px; font-size: .85rem; }
}
