.contact-hero {
  padding: 64px 0 120px;
}

.contact-page .breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 13px;
}

.contact-page .breadcrumb a:hover {
  color: var(--dark);
}

.contact-layout {
  display: flex;
  justify-content: center;
}

.contact-copy {
  width: min(100%, 620px);
}

.contact-copy .lead {
  max-width: 100%;
}

.contact-form {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field label {
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
}

.contact-field label span {
  color: var(--muted);
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--dark);
  font: inherit;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field textarea {
  resize: vertical;
  line-height: 1.55;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(255, 95, 46, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 95, 46, 0.12);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(16, 16, 16, 0.36);
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-submit {
  justify-self: start;
  border: none;
  cursor: pointer;
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form-status {
  margin: 0;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
}

.contact-form-status[data-state="success"] {
  background: rgba(34, 160, 90, 0.12);
  color: #17703f;
}

.contact-form-status[data-state="error"] {
  background: rgba(217, 45, 32, 0.1);
  color: #a3271b;
}

.contact-alt {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-alt p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-alt a {
  color: var(--dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(16, 16, 16, 0.25);
  text-underline-offset: 4px;
}

@media (max-width: 680px) {
  .contact-hero {
    padding: 44px 0 80px;
  }

  .contact-submit {
    justify-self: stretch;
  }
}
