.contact-page {
  background: #fff;
}

.contact-header {
  height: 100px;
  background: var(--ink);
}

.contact-page .home-nav {
  position: static;
  margin: 0 auto;
  transform: none;
}

.contact-main {
  min-height: 557px;
  padding: 20px 24px 72px;
  color: #333;
  background: #fff;
}

.contact-main h1 {
  margin: 0 0 30px;
  color: #4f4f4f;
  border: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 35px;
  font-weight: 300;
  line-height: 35px;
  text-align: center;
}

.contact-form {
  display: grid;
  width: min(600px, 100%);
  margin: 0 auto;
}

.contact-form label {
  display: grid;
  margin-bottom: 10px;
  color: #7a7a7a;
  font-family: "Assistant", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: #7a7a7a;
  border: 1px solid #69727d;
  border-radius: 0;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 21px;
}

.contact-form input {
  height: 40px;
  padding: 8px 16px;
}

.contact-form textarea {
  height: 96px;
  min-height: 96px;
  padding: 5px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #333;
  outline: 2px solid rgb(198 155 60 / 35%);
  outline-offset: 1px;
}

.contact-form button {
  width: 100%;
  height: 40px;
  padding: 0 24px;
  color: #585858;
  border: 1px solid #585858;
  border-radius: 0;
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  color: #fff;
  background: rgb(3 3 3 / 57%);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.contact-form__website {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.contact-form__status {
  min-height: 24px;
  margin: 10px 0 0;
  color: #35633d;
  font-size: 0.9rem;
  text-align: center;
}

.contact-form__status[data-error="true"] {
  color: #9f2f2f;
}

@media (max-width: 680px) {
  .contact-header {
    height: 88px;
  }

  .contact-page .home-nav {
    position: static;
  }

  .contact-main {
    min-height: 0;
    padding: 32px 20px 64px;
  }

  .contact-main h1 {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 35px;
  }
}
