.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #140f0b;
  color: #fcfbf9;
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 20px;
  text-decoration: none;
  white-space: nowrap;
  align-self: flex-start;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.btn:hover  { background: #281F15; box-shadow: 0px 4px 8px rgba(20, 15, 11, 0.12), 0px 8px 16px rgba(20, 15, 11, 0.03); }
.btn:active { background: #37291A; transform: scale(0.98); }
