.contact {
  background-color: rgb(36, 33, 29);
}

.contact-title {
  font-size: 48px;
  color: rgb(244, 128, 0);
  margin-bottom: 10px;
}

.contact-tagline {
  font-size: 24px;
  color: #e6e6e6;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 20px;
  color: #d0d0d0;
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 16px 20px;
  background-color: #2a2927;
  border: 1px solid #3a3937;
  border-radius: 6px;
  color: #ffffff;
  font-size: 18px;
  transition: 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgb(244, 128, 0);
}

textarea {
  height: 160px;
  resize: none;
}

.contact-submit {
  margin-top: 10px;
  padding: 16px 32px;
  font-size: 18px;
}

.contact-access {
  margin-top: 60px;
}

.contact-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-links-inline a {
  color: #c9a86a;
  font-size: 18px;
  white-space: nowrap;
  transition: 0.2s ease;
}

.contact-links-inline a:hover {
  color: #e6c98a;
}
