.site-footer.wwc-suite-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #242424;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.wwc-suite-footer * {
  box-sizing: border-box;
}

.wwc-suite-footer a {
  color: inherit;
  text-decoration: none;
}

.wwc-suite-footer-shell {
  width: min(1228px, calc(100% - 2rem));
  margin: 0 auto;
}

.wwc-suite-footer-cta {
  min-height: 230px;
  padding: clamp(2.5rem, 6vw, 4.8rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  border-bottom: 1px solid #46433f;
}

.wwc-suite-footer-kicker,
.wwc-suite-footer-column h2 {
  margin: 0;
  color: #dc8841;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wwc-suite-footer-cta h2 {
  max-width: 760px;
  margin: 0.7rem 0 0;
  color: #ffffff;
  font-family: "Signika", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
}

.wwc-suite-footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.wwc-suite-footer-button {
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 4px;
  background: #ffffff;
  color: #242424 !important;
  font-size: 0.78rem;
  font-weight: 800;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.wwc-suite-footer-button.is-primary {
  border-color: #cd7b36;
  background: #cd7b36;
  color: #ffffff !important;
}

.wwc-suite-footer-button:hover,
.wwc-suite-footer-button:focus-visible {
  border-color: #dc8841;
  background: #dc8841;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.wwc-suite-footer-main {
  padding: clamp(2.6rem, 5vw, 4rem) 0;
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(130px, 0.72fr));
  gap: clamp(1.6rem, 4vw, 4rem);
}

.wwc-suite-footer-brand {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.wwc-suite-footer-brand-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.wwc-suite-footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.wwc-suite-footer-brand-name {
  color: #ffffff;
  font-family: "Signika", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.wwc-suite-footer-brand p {
  max-width: 300px;
  margin: 0;
  color: #bdb8b3;
  font-size: 0.82rem;
  line-height: 1.65;
}

.wwc-suite-footer-origin {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #dedbd7;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.45;
}

.wwc-suite-footer-origin img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.wwc-suite-footer-column {
  min-width: 0;
}

.wwc-suite-footer-column ul {
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
  list-style: none;
}

.wwc-suite-footer-column a {
  color: #d3cfcb;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 160ms ease;
}

.wwc-suite-footer-column a:hover,
.wwc-suite-footer-column a:focus-visible,
.wwc-suite-footer-legal a:hover,
.wwc-suite-footer-legal a:focus-visible {
  color: #dc8841;
}

.wwc-suite-footer-meta {
  min-height: 76px;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid #46433f;
  color: #96918c;
  font-size: 0.66rem;
}

.wwc-suite-footer-meta p {
  margin: 0;
}

.wwc-suite-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.wwc-suite-footer-legal a {
  color: #bdb8b3;
  font-weight: 700;
}

@media (max-width: 980px) {
  .wwc-suite-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wwc-suite-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .wwc-suite-footer-shell {
    width: min(100% - 1.25rem, 1228px);
  }

  .wwc-suite-footer-cta {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .wwc-suite-footer-actions {
    justify-content: flex-start;
  }

  .wwc-suite-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem 1.5rem;
  }

  .wwc-suite-footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .wwc-suite-footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .wwc-suite-footer-main {
    grid-template-columns: 1fr;
  }

  .wwc-suite-footer-brand {
    grid-column: auto;
  }

  .wwc-suite-footer-actions,
  .wwc-suite-footer-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wwc-suite-footer-button,
  .wwc-suite-footer-column a {
    transition: none;
  }
}
