.footer {
  background: #fafafa;
  padding: 54px 0 32px 0;
  border-top: 2px solid #eee;
  font-family: "Helvetica Neue", HelveticaNeue, sans-serif;
  color: #222;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 32px;
  gap: 38px;
  width: 100vw;
  position: relative;
}
a {
  text-decoration: none;
  color: #222;
}
.footer-left {
  min-width: 270px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-logo {
  width: 120px;
  margin-bottom: 12px;
}
.footer-baseline {
  letter-spacing: 2.6px;
  font-size: 13px;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-contact-btn {
  display: inline-block;
  border: 1px solid #222;
  background: transparent;
  color: #222;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.2px;
  padding: 9px 25px;
  border-radius: 2px;
  text-decoration: none;
  margin-bottom: 32px;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
}
.footer-contact-btn:hover {
  background: #222;
  color: #fff;
}
.footer-socials {
  display: flex;
  gap: 23px;
}
.footer-socials a {
  font-size: 22px;
  color: #222;
  transition: color 0.2s;
}
.footer-socials a:hover {
  color: #666;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.footer-nav {
  display: flex;
  gap: 56px;
  justify-content: end;
  align-items: flex-start;
  width: 100%;
}
.footer-nav-col {
  min-width: 120px;
  font-size: 13px;
  color: #222;
}
.footer-nav-title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 18px;
  font-size: 12px;
  border-bottom: 1.2px solid transparent;
  width: fit-content;
  padding-bottom: 3px;
  transition: border-color 0.28s cubic-bezier(0.6, 0.3, 0, 1), color 0.16s;
  cursor: pointer;
}

.footer-nav-title.active,
.footer-nav-title:hover {
  border-bottom: 1.2px solid #111;
  color: #111;
}
.footer-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity 0.45s cubic-bezier(0.6, 0.3, 0, 1),
    transform 0.45s cubic-bezier(0.6, 0.3, 0, 1),
    max-height 0.45s cubic-bezier(0.6, 0.3, 0, 1);
}
.footer-nav-links.show {
  opacity: 1;
  pointer-events: auto;
  max-height: 500px;
  transform: translateY(0);
}
.footer-nav-links li {
  margin: 0;
  font-size: 12px;
  letter-spacing: 2px;
  color: #222;
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 400;
  line-height: 13px;
}
.footer-nav-links li:hover {
  color: #888;
}
.sticky-btn-contact {
  display: none;
}

@media (max-width: 1000px) {
  .sticky-btn-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    z-index: 999;
  }
  .footer {
    margin-bottom: 10vh;
  }
  .contact-btn-mobile-sticky {
    position: relative;
    border: 1px solid rgb(0, 0, 0);
    padding: 8px 16px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: "Helvetica Neue", HelveticaNeue, sans-serif;
    font-weight: 200;
  }
  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
  .footer-right {
    justify-content: flex-start;
  }
  .footer-nav {
    gap: 18px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .footer-left,
  .footer-right {
    max-width: unset;
    min-width: unset;
  }
  .footer-nav {
    flex-direction: column;
  }
  .footer {
    padding: 34px 0 20px 0;
  }
  .footer-container {
    padding: 0 9vw;
  }
}
