/* ============================================================
   FOOTER.CSS
   ============================================================ */

.cta-footer-wrap {
  position: relative;
  background-color: #43454b;
  overflow: hidden;
}
.cta-footer-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(140px, 21vw, 382px);
  background-image: url("../images/footer-bg.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.cta-footer-wrap > * {
  position: relative;
  z-index: 1;
}

/* ── Ready to Matter CTA ─────────────────────────────────── */
.cta-section {
  padding: clamp(64px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
}
.cta-section__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.cta-section__headline em {
  color: var(--color-red);
  font-style: normal;
}
.cta-section__sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  padding: clamp(40px, 5vw, 64px) 0 clamp(24px, 3vw, 36px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1.3fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: clamp(32px, 4vw, 48px);
  margin-bottom: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}
.footer-logo {
  display: block;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 35.4px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-red);
  letter-spacing: -0.346px;
  line-height: 1.05;
  margin-bottom: 8px;
  padding-top: 35px;
}
.footer-tagline em {
  color: #fff;
  font-style: normal;
}

.footer-location {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 21px;
  letter-spacing: 0.586px;
}
.footer-dot {
  color: #ff2e17;
}

.footer-col {
  border-left: 1px solid var(--color-red);
  padding-left: clamp(10px, 1.25vw, 16px);
}
.footer-col__heading {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  color: var(--color-red);
  margin-bottom: 14px;
}
.footer-col__list {
  list-style: none;
}
.footer-col__list li {
  margin-bottom: 10px;
}
.footer-col__list li:last-child {
  margin-bottom: 0;
}
.footer-col__list a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 27.765px;
  text-decoration: none;
  transition: opacity 0.18s;
}
.footer-col__list a:hover {
  opacity: 0.7;
}

/* ── Footer Bottom ───────────────────────────────────────── */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 4px;
}
.footer-social__link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.footer-social__link:hover {
  background: var(--color-red, #ed1c24);
  border-color: var(--color-red, #ed1c24);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 13.3px;
  font-weight: 400;
  color: #fff;
  line-height: 17px;
  letter-spacing: 0.494px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: center;
}
.footer-copy a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.18s;
}
.footer-copy a:hover {
  opacity: 0.7;
}

.footer-legal-links {
  display: flex;
  gap: 8px;
  list-style: none;
  flex-wrap: nowrap;
}
.footer-legal-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-legal-links a {
  font-family: var(--font-body);
  font-size: 13.3px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.494px;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .footer-copy {
    flex-wrap: wrap;
  }
  .footer-legal-links {
    flex-wrap: wrap;
  }
}
