.contact-box {
  max-width: 640px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.contact-box h1 {
  margin-bottom: 1rem;
}

.contact-intro,
.contact-footer,
.contact-status {
  line-height: 1.6;
}

.contact-intro {
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: #111;
  color: #eee;
  border: 1px solid #333;
  border-radius: 10px;
  box-sizing: border-box;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form button {
  width: fit-content;
  padding: 0.85rem 1.2rem;
  background: #1d1d1d;
  color: #f5f5f5;
  border: 1px solid #444;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
}

.contact-form button:hover {
  background: #262626;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-status {
  margin-top: 1rem;
  min-height: 1.5rem;
}

.contact-status-success {
  color: #9ee6a0;
}

.contact-status-error {
  color: #ff9b9b;
}

.contact-footer {
  margin-top: 2rem;
  opacity: 0.9;
}

.contact-honeypot {
  display: none !important;
}
