/* ---------- Footer ---------- */
.fwrowe-footer {
  background: var(--fwrowe-green-deep);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
}

.fwrowe-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.fwrowe-footer a:hover {
  color: #fff;
}

.fwrowe-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(48px, 7vw, 80px);
}

.fwrowe-footer__logo-img {
  height: 56px;
  width: auto;
}

.fwrowe-footer__blurb {
  margin-top: 18px;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 340px;
}

.fwrowe-footer__heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.fwrowe-footer__heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 10px;
  background: var(--fwrowe-red);
  border-radius: 2px;
}

.fwrowe-footer__menu,
.fwrowe-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fwrowe-footer__menu li {
  margin-bottom: 4px;
}

.fwrowe-footer__menu a {
  display: inline-block;
  padding: 5px 0;
  font-size: 0.92rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.fwrowe-footer__menu a:hover {
  transform: translateX(4px);
}

.fwrowe-footer__contact {
  margin-top: 22px;
}

.fwrowe-footer__contact li {
  margin-bottom: 8px;
}

.fwrowe-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.fwrowe-footer__contact svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.fwrowe-footer__social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.fwrowe-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.fwrowe-footer__social a:hover {
  background: var(--fwrowe-red);
  transform: translateY(-2px);
}

.fwrowe-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 20px;
  font-size: 0.85rem;
}

.fwrowe-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fwrowe-footer__bar p {
  margin: 0;
}

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

  .fwrowe-footer__bar-inner {
    justify-content: center;
    text-align: center;
  }
}
